|
| 1 | +name: Bug report |
| 2 | +description: Something renders, animates, or behaves incorrectly. |
| 3 | +title: "[bug]: " |
| 4 | +labels: [bug] |
| 5 | +body: |
| 6 | + - type: markdown |
| 7 | + attributes: |
| 8 | + value: | |
| 9 | + Thanks for the report. If you can reproduce it in the |
| 10 | + [live playground](https://simplifyjobs.github.io/flutter_border_beam/), |
| 11 | + paste the share link — it carries the exact configuration and saves |
| 12 | + everyone a round trip. |
| 13 | +
|
| 14 | + Security issues do **not** belong here — see |
| 15 | + [SECURITY.md](https://github.com/SimplifyJobs/flutter_border_beam/blob/main/SECURITY.md). |
| 16 | +
|
| 17 | + - type: textarea |
| 18 | + id: description |
| 19 | + attributes: |
| 20 | + label: What happened |
| 21 | + description: A short description of the bug. |
| 22 | + validations: |
| 23 | + required: true |
| 24 | + |
| 25 | + - type: textarea |
| 26 | + id: repro |
| 27 | + attributes: |
| 28 | + label: Minimal reproduction |
| 29 | + description: >- |
| 30 | + The smallest widget tree that shows the problem — ideally one that |
| 31 | + drops straight into a fresh `flutter create` app. A playground share |
| 32 | + link works too. |
| 33 | + render: dart |
| 34 | + placeholder: | |
| 35 | + BorderBeam.rotate( |
| 36 | + colors: BeamColors.ocean, |
| 37 | + child: const SizedBox(width: 240, height: 120), |
| 38 | + ) |
| 39 | + validations: |
| 40 | + required: true |
| 41 | + |
| 42 | + - type: textarea |
| 43 | + id: expected |
| 44 | + attributes: |
| 45 | + label: Expected behavior |
| 46 | + validations: |
| 47 | + required: true |
| 48 | + |
| 49 | + - type: textarea |
| 50 | + id: actual |
| 51 | + attributes: |
| 52 | + label: Actual behavior |
| 53 | + validations: |
| 54 | + required: true |
| 55 | + |
| 56 | + - type: input |
| 57 | + id: variant |
| 58 | + attributes: |
| 59 | + label: Variant(s) and palette |
| 60 | + description: Which `BeamVariant` and which `BeamColors` (or custom colors). |
| 61 | + placeholder: "rotate + line; BeamColors.colorful" |
| 62 | + validations: |
| 63 | + required: true |
| 64 | + |
| 65 | + - type: textarea |
| 66 | + id: flutter-version |
| 67 | + attributes: |
| 68 | + label: "`flutter --version` output" |
| 69 | + description: Paste the whole thing — the Dart version and channel matter. |
| 70 | + render: shell |
| 71 | + validations: |
| 72 | + required: true |
| 73 | + |
| 74 | + - type: input |
| 75 | + id: package-version |
| 76 | + attributes: |
| 77 | + label: flutter_border_beam version |
| 78 | + placeholder: "0.1.0" |
| 79 | + validations: |
| 80 | + required: true |
| 81 | + |
| 82 | + - type: input |
| 83 | + id: platform |
| 84 | + attributes: |
| 85 | + label: Device / OS |
| 86 | + description: >- |
| 87 | + Include the web renderer (canvaskit or skwasm) and the browser if this |
| 88 | + is on web; include the simulator/emulator vs. physical device |
| 89 | + otherwise. |
| 90 | + placeholder: "iPhone 16 simulator, iOS 26.0 / Chrome 141 on macOS, canvaskit" |
| 91 | + validations: |
| 92 | + required: true |
| 93 | + |
| 94 | + - type: textarea |
| 95 | + id: media |
| 96 | + attributes: |
| 97 | + label: Screenshot or video |
| 98 | + description: >- |
| 99 | + Strongly encouraged — this package is a visual one, and a five-second |
| 100 | + screen recording usually says more than a paragraph. Drag files in. |
| 101 | + validations: |
| 102 | + required: false |
| 103 | + |
| 104 | + - type: textarea |
| 105 | + id: context |
| 106 | + attributes: |
| 107 | + label: Anything else |
| 108 | + description: Logs, a stack trace, what you already tried. |
| 109 | + validations: |
| 110 | + required: false |
0 commit comments