Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add Bug Report Github issue template #359

Merged
merged 2 commits into from
Sep 18, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
69 changes: 69 additions & 0 deletions .github/ISSUE_TEMPLATE/bug_report.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,69 @@
---
name: Bug report
about: The application is crashing or throws an exception or something else looks wrong.
title: ''
labels: bug
assignees: ''

---

## Steps to Reproduce

<!-- Please include full steps to reproduce so that we can reproduce the problem. -->

1. Execute `dart run` on the code sample <!-- (see "Code sample" section below) -->
2. ... <!-- describe steps to demonstrate bug -->
3. ... <!-- for example "Tap on X and see a crash" -->

**Expected results:** <!-- what did you want to see? -->

**Actual results:** <!-- what did you see? -->

<details>
<summary>Code sample</summary>

<!--
Please create a minimal reproducible sample that shows the problem
and attach it below between the lines with the backticks.

To create it you can use `dart create bug` command and update the `main.dart` file.

Alternatively, you can use https://dartpad.dev/
which is capable of creating and running small Dart apps.

Without this we will unlikely be able to progress on the issue, and because of that
we regretfully will have to close it.
-->

```dart
```

</details>

<details>
<summary>Logs</summary>

<!--
Run your application with `dart run main.dart --verbose` and attach all the
log output below between the lines with the backticks. If there is an
exception, please see if the error message includes enough information
to explain how to solve the issue.
-->

```
```

<!--
Run `dart analyze` and attach any output of that command below.
If there are any analysis errors, try resolving them before filing this issue.
-->

```
```

<!-- Finally, paste the output of running `dart --version` here. -->

```
```

</details>