kevlatus / flutter_fortune_wheel

Visualize random selections with Flutter widgets like the wheel of fortune.
https://kevlatus.github.io/flutter_fortune_wheel
MIT License
109 stars 84 forks source link

Item Styling only works for FortureWheel but doesn't work for FortuneBar #98

Open japarico opened 1 year ago

japarico commented 1 year ago

Describe the bug Item Styling only works for FortureWheel but doesn't work for FortuneBar.

To Reproduce Steps to reproduce the behavior:

FortuneBar( selected: Stream.value(0), items: [ FortuneItem( child: Text('A'), style: FortuneItemStyle( color: Colors.red, // <-- custom circle slice fill color borderColor: Colors.green, // <-- custom circle slice stroke color borderWidth: 3, // <-- custom circle slice stroke width ), ), FortuneItem(child: Text('B')), ], )

stale[bot] commented 1 year ago

This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions.

jacksonw765 commented 1 year ago

Same issue