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
This package has potential but unfortunately I can't get it to render on the correct widget.
I have a container which then has multiple nested rows & columns, but wherever I place the super_banner it doesn't correctly adhere to the correct widgets bounds and pushes other widgets around messing up my UI.
As a suggestion, take at look at the flutter 'glass' package. Looks like it implements a widget extension that then has a reference on the correct object you want to render to...for example this would be quite literally super:
Greetings, and thank you for your package.
This package has potential but unfortunately I can't get it to render on the correct widget.
I have a container which then has multiple nested rows & columns, but wherever I place the super_banner it doesn't correctly adhere to the correct widgets bounds and pushes other widgets around messing up my UI.
As a suggestion, take at look at the flutter 'glass' package. Looks like it implements a widget extension that then has a reference on the correct object you want to render to...for example this would be quite literally super:
Container( Center( child: Text("super banners are great") ) ).CornerBanner( elevation: 5, bannerPosition: CornerBannerPosition.topLeft, bannerColor: borderColor, child: Text( "super", style: const TextStyle( fontSize: 9, color: Colors.white, fontWeight: FontWeight.bold), ), ),
Thanks for your time!!
Cheers,
Grant
The text was updated successfully, but these errors were encountered: