How can i make this kind of tab bar in flutter
How to make this drop design tab bar in flutter?
97 Views Asked by Yogesh Dubey At
2
There are 2 best solutions below
1

You can use this package: curved_navigation_bar
CurvedNavigationBar(
backgroundColor: Colors.blueAccent,
items: <Widget>[
Icon(Icons.add, size: 30),
Icon(Icons.list, size: 30),
Icon(Icons.compare_arrows, size: 30),
],
onTap: (index) {
//Handle button tap
},
)