Skip to content

Commit 90f1e5a

Browse files
committed
added github issue templates
1 parent 4f31507 commit 90f1e5a

File tree

3 files changed

+144
-0
lines changed

3 files changed

+144
-0
lines changed

.github/ISSUE_TEMPLATE/BUG.md

Lines changed: 73 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,73 @@
1+
---
2+
name: I have found out bug in plugin.
3+
about: You are writing an Flutter application with this webview plugin but the application is crashing
4+
or throws an exception, a plugin is buggy, or something looks wrong.
5+
title: ''
6+
labels: ''
7+
assignees: ''
8+
9+
---
10+
11+
<!-- Thank you for using Flutter Webview plugin!
12+
13+
If you are looking for support, please check out our documentation
14+
or consider asking a question on Stack Overflow:
15+
* https://flutter.dev/
16+
* https://api.flutter.dev/
17+
* https://stackoverflow.com/questions/tagged/flutter?sort=frequent
18+
19+
If you have found a bug or if our documentation doesn't have an answer
20+
to what you're looking for, then fill our the template below. Please read
21+
our guide to filing a bug first: https://flutter.dev/docs/resources/bug-reports
22+
-->
23+
24+
## System info
25+
26+
Issue occurs on: iOS / Android / both
27+
Plugin version: xxx
28+
Flutter doctor output:
29+
30+
```
31+
paste it here...
32+
```
33+
34+
## Steps to Reproduce
35+
36+
<!--
37+
Please tell us exactly how to reproduce the problem you are running into.
38+
39+
Please attach a small application (ideally just one main.dart file) that
40+
reproduces the problem. You could use https://gist.github.com/ for this.
41+
42+
If the problem is with your application's rendering, then please attach
43+
a screenshot and explain what the problem is.
44+
-->
45+
46+
1. ...
47+
2. ...
48+
3. ...
49+
50+
## Logs
51+
52+
<!--
53+
Run your application with `flutter run --verbose` and attach all the
54+
log output below between the lines with the backticks. If there is an
55+
exception, please see if the error message includes enough information
56+
to explain how to solve the issue.
57+
-->
58+
59+
```
60+
```
61+
62+
<!--
63+
Run `flutter analyze` and attach any output of that command below.
64+
If there are any analysis errors, try resolving them before filing this issue.
65+
-->
66+
67+
```
68+
```
69+
70+
<!-- Finally, paste the output of running `flutter doctor -v` here. -->
71+
72+
```
73+
```

.github/ISSUE_TEMPLATE/SUPPORT.md

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
---
2+
name: I want help writing my application
3+
about: You have a question for how to achieve a particular effect, or you need help
4+
with using a particular API.
5+
title: ''
6+
labels: ''
7+
assignees: ''
8+
9+
---
10+
11+
<!-- Thank you for using Flutter!
12+
13+
Please check out our documentation first:
14+
* https://flutter.dev/
15+
* https://api.flutter.dev/
16+
17+
If you can't find the answer there, please consider asking a question on
18+
the Stack Overflow Web site:
19+
* https://stackoverflow.com/questions/tagged/flutter?sort=frequent
20+
21+
Please don't file a GitHub issue for support requests. GitHub issues are
22+
for tracking defects in the product. If you file a bug asking for help, we
23+
will consider this a request for a documentation update.
24+
25+
-->
Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
---
2+
name: Feature request
3+
about: Suggest a new idea for Flutter webview plugin.
4+
title: ''
5+
labels: ''
6+
assignees: ''
7+
8+
---
9+
10+
<!-- Thank you for using Flutter!
11+
12+
If you are looking for support, please check out our documentation
13+
or consider asking a question on Stack Overflow:
14+
* https://flutter.dev/
15+
* https://api.flutter.dev/
16+
* https://stackoverflow.com/questions/tagged/flutter?sort=frequent
17+
18+
If you have found a bug or if our documentation doesn't have an answer
19+
to what you're looking for, then fill our the template below. Please read
20+
our guide to filing a bug first: https://flutter.dev/docs/resources/bug-reports
21+
-->
22+
23+
## Use case
24+
25+
<!--
26+
Please tell us the problem you are running into that led to you wanting
27+
a new feature.
28+
29+
Is your feature request related to a problem? Please give a clear and
30+
concise description of what the problem is.
31+
32+
Describe alternative solutions you've considered. Is there a package
33+
on pub.dev/flutter that already solves this?
34+
-->
35+
36+
## Proposal
37+
38+
<!--
39+
Briefly but precisely describe what you would like Flutter to be able to do.
40+
41+
Consider attaching images showing what you are imagining.
42+
43+
Does this have to be provided by Flutter directly, or can it be provided
44+
by a package on pub.dev/flutter? If so, maybe consider implementing and
45+
publishing such a package rather than filing a bug.
46+
-->

0 commit comments

Comments
 (0)