GitHunt
RA

RahilBadshah/flutter_navigation_bar_curved

Flutter curved bottom navigation bar with great animation.

flutter_navigation_bar_curved

Flutter curved bottom navigation bar with great animation by using external package.

Android Screenshots

Gif Screenshot
drawing drawing

Add dependency

dependencies:
  curved_navigation_bar: ^0.2.11 #latest version

How to use

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),
)

Languages

Dart74.8%Swift17.4%Kotlin6.1%Objective-C1.6%

Contributors

Created August 13, 2020
Updated August 16, 2023
RahilBadshah/flutter_navigation_bar_curved | GitHunt