You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
FloatingActionBubble accepts only Bubble as items, but Bubble is not a widget (BubbleMenu is) so one can not assign key to it.
Why not make Bubble a StatelessWidget and get rid of BubbleMenu?
I mean:
I'm working on a similar project and I need a key too. Do you think we should submit a pull request to the original repository or look for another package that has more active development?
FloatingActionBubble
accepts onlyBubble
asitems
, butBubble
is not a widget (BubbleMenu
is) so one can not assignkey
to it.Why not make
Bubble
aStatelessWidget
and get rid ofBubbleMenu
?I mean:
You just use:
child: items[index],
instead of:
and it works.
It's simple as that and doesn't break compatibility.
The text was updated successfully, but these errors were encountered: