Skip to content

Commit 7750ce0

Browse files
Added bug report template
1 parent fe128b6 commit 7750ce0

File tree

1 file changed

+101
-0
lines changed

1 file changed

+101
-0
lines changed

.github/templates/bug.yml

Lines changed: 101 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,101 @@
1+
name: Report a bug
2+
description: |
3+
You have discovered a bug in our widgets that is causing your application to crash
4+
or throw an exception. It appears that a widget is buggy, or something is not functioning correctly.
5+
body:
6+
- type: markdown
7+
attributes:
8+
value: |
9+
Thank you for using Syncfusion widgets!
10+
11+
If you are looking for support, please check out our documentation, knowledge base,
12+
and feedbacks. If you are unable to find a solution, please report the bug here.
13+
14+
- [User Guide Documentation](https://help.syncfusion.com/flutter/introduction/overview)
15+
- [Knowledge Base](https://support.syncfusion.com/kb/cross-platforms/category/79)
16+
- [Feedbacks](https://stackoverflow.com/questions/tagged/flutter?sort=frequent)
17+
- type: textarea
18+
attributes:
19+
label: Steps to reproduce
20+
description: Kindly provide us with detailed steps to replicate the issue you are experiencing.
21+
placeholder: |
22+
1. ...
23+
2. ...
24+
3. ...
25+
validations:
26+
required: true
27+
- type: textarea
28+
attributes:
29+
label: Code sample
30+
description: |
31+
Kindly create a simplified, reproducible example that demonstrates the issue
32+
and include it within the code block delineated by backticks.
33+
Note: Refrain from posting screenshots containing code.
34+
value: |
35+
<details open><summary>Code sample</summary>
36+
37+
```dart
38+
[Paste your code here]
39+
```
40+
41+
</details>
42+
validations:
43+
required: true
44+
- type: textarea
45+
attributes:
46+
label: Screenshots or Video
47+
description: |
48+
Upload any screenshots or video of the bug if applicable.
49+
value: |
50+
<details open>
51+
<summary>Screenshots / Video demonstration</summary>
52+
53+
[Upload media here]
54+
55+
</details>
56+
- type: textarea
57+
attributes:
58+
label: Stack Traces
59+
description: |
60+
If it is a runtime exception, kindly provide the stack trace from the console.
61+
If the traces are too large to be uploaded to GitHub, you may upload them as a `zip` file.
62+
value: |
63+
<details open><summary>Stack Traces</summary>
64+
65+
```json
66+
[Paste the Stack Traces here]
67+
```
68+
69+
</details>
70+
- type: dropdown
71+
id: target_platforms
72+
attributes:
73+
label: On which target platforms have you observed this bug?
74+
multiple: true
75+
options:
76+
- Android
77+
- iOS
78+
- Web
79+
- Web (Android browser)
80+
- Web (iOS browser)
81+
- Windows
82+
- macOS
83+
- Linux
84+
validations:
85+
required: true
86+
- type: textarea
87+
attributes:
88+
label: Flutter Doctor output
89+
description: |
90+
Kindly share the complete details generated by executing the command
91+
`flutter doctor -v` in your terminal.
92+
value: |
93+
<details open><summary>Doctor output</summary>
94+
95+
```console
96+
[Paste your output here]
97+
```
98+
99+
</details>
100+
validations:
101+
required: true

0 commit comments

Comments
 (0)