how to create custom bottomNavigation Bar in flutter that looks like this:
Asked
Active
Viewed 2,276 times
-1

Arsh Shaikh
- 1,106
- 5
- 21

Sachin s p
- 13
- 2
-
please update the question with, what you've tried so far – Lal Krishna Aug 16 '20 at 09:24
1 Answers
1
this plugin will help you design such Bottom Navigation Bar.
Scaffold(
bottomNavigationBar: ConvexAppBar(
items: [
TabItem(icon: Icons.home, title: 'Home'),
TabItem(icon: Icons.map, title: 'Discovery'),
TabItem(icon: Icons.add, title: 'Add'),
TabItem(icon: Icons.message, title: 'Message'),
TabItem(icon: Icons.people, title: 'Profile'),
],
initialActiveIndex: 2,//optional, default as 0
onTap: (int i) => print('click index=$i'),
)
);
You can also use thisplugin

Bensal
- 3,316
- 1
- 23
- 35