blob: f696d89dd1ce4d821bee21e6bc324c7cf3a08583 [file] [log] [blame]
Nabeel Parkar6d01ae12023-04-12 16:36:16 +05301name: Report a bug
2description: |
3 You found a bug in Flutter causing your application to crash or
4 throw an exception, a widget is buggy, or something looks wrong.
5body:
6 - type: markdown
7 attributes:
8 value: |
9 Thank you for using Flutter!
10
11 If you are looking for support, please check out our documentation
12 or consider asking a question on Stack Overflow:
13
14 - https://flutter.dev/
15 - https://api.flutter.dev/
16 - https://stackoverflow.com/questions/tagged/flutter?sort=frequent
17 - type: checkboxes
18 attributes:
19 label: Is there an existing issue for this?
20 options:
21 - label: I have searched the [existing issues](https://github.com/flutter/flutter/issues)
22 required: true
23 - label: I have read the [guide to filing a bug](https://flutter.dev/docs/resources/bug-reports)
24 required: true
25 - type: textarea
26 attributes:
27 label: Steps to reproduce
28 description: Please tell us exactly how to reproduce the problem you are running into.
29 placeholder: |
30 1. ...
31 2. ...
32 3. ...
33 validations:
34 required: true
35 - type: textarea
36 attributes:
37 label: Expected results
38 description: Please tell us what is expected to happen.
39 validations:
40 required: true
41 - type: textarea
42 attributes:
43 label: Actual results
44 description: Please tell us what is actually happening.
45 validations:
46 required: true
47 - type: textarea
48 attributes:
49 label: Code sample
50 description: |
51 Please create a minimal reproducible sample that shows the problem
52 and attach it below between the lines with the backticks.
53
54 To create it, use the `flutter create bug` command and update the `main.dart` file.
55
56 Alternatively, you can use https://dartpad.dev/ or create a public GitHub
57 repository to share your sample.
58
59 Without this we will unlikely be able to progress on the issue, and because of that
60 we regretfully will have to close it.
61
62 Note: Please do not upload screenshots of text. Instead, use code blocks
63 or the above mentioned ways to upload your code sample.
64 value: |
65 <details><summary>Code sample</summary>
66
67 ```dart
68 [Paste your code here]
69 ```
70
71 </details>
72 validations:
73 required: true
74 - type: textarea
75 attributes:
76 label: Screenshots or Video
77 description: |
78 Upload any screenshots or video of the bug if applicable.
79 value: |
80 <details>
81 <summary>Screenshots / Video demonstration</summary>
82
83 [Upload media here]
84
85 </details>
86 - type: textarea
87 attributes:
88 label: Logs
89 description: |
90 Include the full logs of the commands you are running between the lines
91 with the backticks below. If you are running any `flutter` commands,
92 please include the output of running them with `--verbose`; for example,
93 the output of running `flutter --verbose create foo`.
94
95 If the logs are too large to be uploaded to GitHub, you may upload
96 them as a `txt` file or use online tools like https://pastebin.com to
97 share it.
98
99 Note: Please do not upload screenshots of text. Instead, use code blocks
100 or the above mentioned ways to upload logs.
101 value: |
102 <details><summary>Logs</summary>
103
104 ```console
105 [Paste your logs here]
106 ```
107
108 </details>
109 - type: textarea
110 attributes:
111 label: Flutter Doctor output
112 description: |
113 Please provide the full output of running `flutter doctor -v`
114 value: |
115 <details><summary>Doctor output</summary>
116
117 ```console
118 [Paste your output here]
119 ```
120
121 </details>
122 validations:
123 required: true