Reputation: 561
In Flutter, I wanted to create a circular notch in the bottom navigation bar but my icons are in SVG and available plugins only take the icon data. something like these.
Upvotes: 0
Views: 626
Reputation: 81
Check out this package at Pub.dev
https://pub.dev/packages/persistent_bottom_nav_bar
Take a look at styles 15 & 16.
Upvotes: 1
Reputation: 103
Use the package footer and customise as you needed. This package is available in pub.dev. Here is the link https://pub.dev/packages/footer.
This footer will take widgets as child:
so you can return a Scaffold ()
or container()
Upvotes: 0