|
| 1 | +name: Report a google3 bug |
| 2 | +description: | |
| 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. |
| 5 | +title: "[Google3 Bug]: " |
| 6 | +labels: 'customer: google' |
| 7 | +body: |
| 8 | + - type: markdown |
| 9 | + attributes: |
| 10 | + value: | |
| 11 | + Thank you for using Flutter! |
| 12 | +
|
| 13 | + If you are looking for support, please check out our documentation |
| 14 | + or consider asking a question on Stack Overflow: |
| 15 | +
|
| 16 | + - https://flutter.dev/ |
| 17 | + - https://api.flutter.dev/ |
| 18 | + - https://stackoverflow.com/questions/tagged/flutter?sort=frequent |
| 19 | + - type: markdown |
| 20 | + attributes: |
| 21 | + value: | |
| 22 | + Before filling the form fields, please consider the following: |
| 23 | + - Ensure that you have searched the [existing issues](https://github.com/flutter/flutter/issues) |
| 24 | + - Read the [guide to filing a bug](https://flutter.dev/docs/resources/bug-reports) |
| 25 | + - type: markdown |
| 26 | + attributes: |
| 27 | + value: | |
| 28 | + Flutter GitHub issues are public and so you must avoid posting any Google confidential information in them. |
| 29 | + - type: checkboxes |
| 30 | + id: priority-indicator |
| 31 | + attributes: |
| 32 | + label: Help us understand the severity of this issue |
| 33 | + description: Please only choose one |
| 34 | + options: |
| 35 | + - label: causing severe production issues e.g. malfunctions or data loss |
| 36 | + - label: blocking next binary release |
| 37 | + - label: blocking a client feature launch within a quarter |
| 38 | + - label: nice-to-have but does not block a launch within the next quarter |
| 39 | + - type: textarea |
| 40 | + attributes: |
| 41 | + label: Steps to reproduce |
| 42 | + description: Please tell us exactly how to reproduce the problem you are running into. |
| 43 | + placeholder: | |
| 44 | + 1. ... |
| 45 | + 2. ... |
| 46 | + 3. ... |
| 47 | + validations: |
| 48 | + required: true |
| 49 | + - type: textarea |
| 50 | + attributes: |
| 51 | + label: Expected results |
| 52 | + description: Please tell us what is expected to happen. |
| 53 | + validations: |
| 54 | + required: true |
| 55 | + - type: textarea |
| 56 | + attributes: |
| 57 | + label: Actual results |
| 58 | + description: Please tell us what is actually happening. |
| 59 | + validations: |
| 60 | + required: true |
| 61 | + - type: textarea |
| 62 | + attributes: |
| 63 | + label: Code sample |
| 64 | + description: | |
| 65 | + Please create a minimal reproducible sample that shows the problem |
| 66 | + and attach it below between the lines with the backticks. |
| 67 | +
|
| 68 | + To create it, use the `flutter create bug` command and update the `main.dart` file. |
| 69 | +
|
| 70 | + Alternatively, you can use https://dartpad.dev/ or create a public GitHub |
| 71 | + repository to share your sample. |
| 72 | +
|
| 73 | + Without this we will unlikely be able to progress on the issue, and because of that |
| 74 | + we regretfully will have to close it. |
| 75 | +
|
| 76 | + Note: Please do not upload screenshots of text. Instead, use code blocks |
| 77 | + or the above mentioned ways to upload your code sample. |
| 78 | + value: | |
| 79 | + <details open><summary>Code sample</summary> |
| 80 | +
|
| 81 | + ```dart |
| 82 | + [Paste your code here] |
| 83 | + ``` |
| 84 | +
|
| 85 | + </details> |
| 86 | + validations: |
| 87 | + required: true |
| 88 | + - type: textarea |
| 89 | + attributes: |
| 90 | + label: Screenshots or Video |
| 91 | + description: | |
| 92 | + Upload any screenshots or video of the bug if applicable. |
| 93 | + value: | |
| 94 | + <details open> |
| 95 | + <summary>Screenshots / Video demonstration</summary> |
| 96 | +
|
| 97 | + [Upload media here] |
| 98 | +
|
| 99 | + </details> |
| 100 | + - type: textarea |
| 101 | + attributes: |
| 102 | + label: Logs |
| 103 | + description: | |
| 104 | + Include the full logs of the commands you are running between the lines |
| 105 | + with the backticks below. If you are running any `flutter` commands, |
| 106 | + please include the output of running them with `--verbose`; for example, |
| 107 | + the output of running `flutter --verbose create foo`. |
| 108 | +
|
| 109 | + If the logs are too large to be uploaded to GitHub, you may upload |
| 110 | + them as a `txt` file or use online tools like https://pastebin.com to |
| 111 | + share it. |
| 112 | +
|
| 113 | + Note: Please do not upload screenshots of text. Instead, use code blocks |
| 114 | + or the above mentioned ways to upload logs. |
| 115 | + value: | |
| 116 | + <details open><summary>Logs</summary> |
| 117 | +
|
| 118 | + ```console |
| 119 | + [Paste your logs here] |
| 120 | + ``` |
| 121 | +
|
| 122 | + </details> |
| 123 | + - type: textarea |
| 124 | + attributes: |
| 125 | + label: Flutter Doctor output |
| 126 | + description: | |
| 127 | + Please provide the full output of running `flutter doctor -v` |
| 128 | + value: | |
| 129 | + <details open><summary>Doctor output</summary> |
| 130 | +
|
| 131 | + ```console |
| 132 | + [Paste your output here] |
| 133 | + ``` |
| 134 | +
|
| 135 | + </details> |
| 136 | + validations: |
| 137 | + required: true |
0 commit comments