flutter/.github/ISSUE_TEMPLATE/9_first_party_packages.yml
David Iglesias 456366232a
[ci] Add google_adsense to 9_first_party_packages.yml (#159827)
Adds the google_adsense package to the list of 1P packages in the
"9_first_party_packages.yaml" file.

## Issues

Related: https://github.com/flutter/packages/pull/6871

## Pre-launch Checklist

- [x] I read the [Contributor Guide] and followed the process outlined
there for submitting PRs.
- [x] I read the [Tree Hygiene] wiki page, which explains my
responsibilities.
- [x] I read and followed the [Flutter Style Guide], including [Features
we expect every widget to implement].
- [x] I signed the [CLA].
- [ ] I listed at least one issue that this PR fixes in the description
above.
- [ ] I updated/added relevant documentation (doc comments with `///`).
- [ ] I added new tests to check the change I am making, or this PR is
[test-exempt].
- [ ] I followed the [breaking change policy] and added [Data Driven
Fixes] where supported.
- [x] All existing and new tests are passing.

If you need help, consider asking for advice on the #hackers-new channel
on [Discord].

<!-- Links -->
[Contributor Guide]:
https://github.com/flutter/flutter/blob/main/docs/contributing/Tree-hygiene.md#overview
[Tree Hygiene]:
https://github.com/flutter/flutter/blob/main/docs/contributing/Tree-hygiene.md
[test-exempt]:
https://github.com/flutter/flutter/blob/main/docs/contributing/Tree-hygiene.md#tests
[Flutter Style Guide]:
https://github.com/flutter/flutter/blob/main/docs/contributing/Style-guide-for-Flutter-repo.md
[Features we expect every widget to implement]:
https://github.com/flutter/flutter/blob/main/docs/contributing/Style-guide-for-Flutter-repo.md#features-we-expect-every-widget-to-implement
[CLA]: https://cla.developers.google.com/
[flutter/tests]: https://github.com/flutter/tests
[breaking change policy]:
https://github.com/flutter/flutter/blob/main/docs/contributing/Tree-hygiene.md#handling-breaking-changes
[Discord]:
https://github.com/flutter/flutter/blob/main/docs/contributing/Chat.md
[Data Driven Fixes]:
https://github.com/flutter/flutter/blob/main/docs/contributing/Data-driven-Fixes.md
2024-12-05 20:59:53 +00:00

227 lines
6.8 KiB
YAML

name: Report a bug in one of Flutter's first-party packages
description: |
You found a bug in one of Flutter's first-party packages.
body:
- type: markdown
attributes:
value: |
Thank you for using Flutter!
If you are looking for support, please check out our documentation
or consider asking a question on Stack Overflow:
- https://flutter.dev/
- https://api.flutter.dev/
- https://stackoverflow.com/questions/tagged/flutter?sort=frequent
- type: markdown
attributes:
value: |
Before filling the form fields, please consider the following:
- Ensure that you have searched the [existing package issues](https://github.com/flutter/flutter/issues?q=is%3Aopen+is%3Aissue+label%3Apackage)
- Read the [guide to filing a bug](https://flutter.dev/docs/resources/bug-reports)
- type: dropdown
id: packages
attributes:
label: What package does this bug report belong to?
description: |
If the package you are reporting a bug for is not listed here,
it could be a third party package's issue.
In that case, you should report the issue to the package's developers.
options:
- animations
- camera
- cross_file
- css_colors
- espresso
- extension_google_sign_in_as_googleapis_auth
- file_selector
- flutter_adaptive_scaffold
- flutter_image
- flutter_lints
- flutter_markdown
- flutter_migrate
- flutter_plugin_android_lifecycle
- flutter_svg
- flutter_template_images
- go_router
- go_router_builder
- google_adsense
- google_identity_services_web
- google_maps_flutter
- google_sign_in
- image_picker
- in_app_purchase
- interactive_media_ads
- ios_platform_images
- local_auth
- metrics_center
- multicast_dns
- palette_generator
- path_parsing
- path_provider
- pigeon
- plugin_platform_interface
- pointer_interceptor
- process
- quick_actions
- rfw
- shared_preferences
- standard_message_codec
- two_dimensional_scrollables
- url_launcher
- vector_graphics
- video_player
- web_benchmarks
- webview_flutter
- xdg_directories
validations:
required: true
- type: dropdown
id: target_platforms
attributes:
label: What target platforms are you seeing this bug on?
description: Have you confirmed that package supports the platform you are reporting against?
multiple: true
options:
- Android
- iOS
- Web
- macOS
- Linux
- Windows
validations:
required: true
- type: dropdown
id: pub_upgrade
attributes:
label: Have you already upgraded your packages?
description: |
Please check if the issue still persists or not after running `flutter pub upgrade`.
options:
- "Yes"
- "No"
validations:
required: true
- type: textarea
attributes:
label: Dependency versions
description: |
`pubspec.lock` file content that includes the package and its dependencies.
You can remove private dependencies from the file if they are sensitive.
If the file is too large to be uploaded to GitHub or the content is too long,
you may use online tools like https://pastebin.com and share the url here.
Note: Please do not upload screenshots of text. Instead, use code blocks
or the above mentioned ways to upload this.
value: |
<details><summary>pubspec.lock</summary>
```lock
[Paste file content here]
```
</details>
- type: textarea
attributes:
label: Steps to reproduce
description: Please tell us exactly how to reproduce the problem you are running into.
placeholder: |
1. ...
2. ...
3. ...
validations:
required: true
- type: textarea
attributes:
label: Expected results
description: Please tell us what is expected to happen.
validations:
required: true
- type: textarea
attributes:
label: Actual results
description: Please tell us what is actually happening.
validations:
required: true
- type: textarea
attributes:
label: Code sample
description: |
Please create a minimal reproducible sample that shows the problem
and attach it below between the lines with the backticks.
To create it, use the `flutter create bug` command and update the `main.dart` file.
Alternatively, you can create a public GitHub repository to share your sample.
Without this we will unlikely be able to progress on the issue, and because of that
we regretfully will have to close it.
You can also refer to the package's example project if it is simple enough
to reproduce the bug.
Note: Please do not upload screenshots of text. Instead, use code blocks
or the above mentioned ways to upload your code sample.
value: |
<details open><summary>Code sample</summary>
```dart
[Paste your code here]
```
</details>
validations:
required: true
- type: textarea
attributes:
label: Screenshots or Videos
description: |
Upload any screenshots or videos of the bug if applicable.
value: |
<details open>
<summary>Screenshots / Video demonstration</summary>
[Upload media here]
</details>
- type: textarea
attributes:
label: Logs
description: |
Include the full logs of the commands you are running between the lines
with the backticks below. If you are running any `flutter` commands,
please include the output of running them with `--verbose`; for example,
the output of running `flutter --verbose create foo`.
If the logs are too large to be uploaded to GitHub, you may upload
them as a `txt` file or use online tools like https://pastebin.com to
share it.
Note: Please do not upload screenshots of text. Instead, use code blocks
or the above mentioned ways to upload logs.
value: |
<details open><summary>Logs</summary>
```console
[Paste your logs here]
```
</details>
- type: textarea
attributes:
label: Flutter Doctor output
description: |
Please provide the full output of running `flutter doctor -v`
value: |
<details open><summary>Doctor output</summary>
```console
[Paste your output here]
```
</details>
validations:
required: true