I want to achieve ribbon style around widgets.
Hey guys, do anyone have any idea on how to implement this kind of style around a widget in flutter. Is there any available package for this?
Thanks!
I want to achieve ribbon style around widgets.
Hey guys, do anyone have any idea on how to implement this kind of style around a widget in flutter. Is there any available package for this?
Thanks!
I found a package that has something similar https://pub.dev/packages/floating_ribbon. But, I think it's not hard to implemented yourself. You will need Stack
where the ribbon will be placed on top of your widget. You can use also Positioned
to place the ribbon exactly where you want on top of your widget.