Toggle navigation
Toggle navigation
This project
Loading...
Sign in
flutter_package
/
fluttertpc_get
Go to a project
Toggle navigation
Projects
Groups
Snippets
Help
Toggle navigation pinning
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Authored by
Jonny Borges
2020-10-01 15:01:13 -0300
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Committed by
GitHub
2020-10-01 15:01:13 -0300
Commit
1f0bf65eccc5db19e7ff129d3020f7dde16742fc
1f0bf65e
1 parent
8c70723f
Update bug_report.md
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
23 additions
and
0 deletions
.github/ISSUE_TEMPLATE/bug_report.md
.github/ISSUE_TEMPLATE/bug_report.md
View file @
1f0bf65
...
...
@@ -12,6 +12,29 @@ assignees: jonataslaw
**Describe the bug**
A clear and concise description of what the bug is.
**
Reproduction code
NOTE: THIS IS MANDATORY, IF YOUR ISSUE DOES NOT CONTAIN IT, IT WILL BE CLOSED PRELIMINARY)
**
example:
```
dart
void
main
(
)
=>
runApp
(
MaterialApp
(
home:
Home
()));
class
Home
extends
StatelessWidget
{
final
count
=
0
.
obs
;
@override
Widget
build
(
context
)
=>
Scaffold
(
appBar:
AppBar
(
title:
Text
(
"counter"
)),
body:
Center
(
child:
Obx
(()
=>
Text
(
"
$count
"
)),
),
floatingActionButton:
FloatingActionButton
(
child:
Icon
(
Icons
.
add
),
onPressed:
()
=>
count
.
value
++,
));
}
```
**To Reproduce**
Steps to reproduce the behavior:
1.
Go to '...'
...
...
Please
register
or
login
to post a comment