Flutter curved bottom navigation bar with great animation by using external package.
Gif | Screenshot |
---|---|
dependencies:
curved_navigation_bar: ^0.2.11 #latest version
Scaffold(
bottomNavigationBar: CurvedNavigationBar(
backgroundColor: Colors.greenAccent,
items: <Widget>[
Icon(Icons.add_location, size: 30),
Icon(Icons.alarm, size: 30),
Icon(Icons.dashboard, size: 30),
Icon(Icons.supervised_user_circle, size: 30),
Icon(Icons.cloud_upload, size: 30),
],
onTap: (index) {
//Handle button tap
},
),
body: Container(color: Colors.greenAccent),
)