Rohit Sainik
Rohit Sainik

Reputation: 561

How to make Flutter BottomAppBar with CircularNotch in center?

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.

enter image description here

Upvotes: 0

Views: 626

Answers (2)

Abdallah Nassar
Abdallah Nassar

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

Sasidhar Mankala
Sasidhar Mankala

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

Related Questions