kevlatus/flutter_fortune_wheel

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

japarico opened this issue · 2 comments

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 commented

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.

Same issue