RahilBadshah / flutter_navigation_bar_curved

Flutter curved bottom navigation bar with great animation.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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

About

Flutter curved bottom navigation bar with great animation.


Languages

Language:Dart 74.8%Language:Swift 17.4%Language:Kotlin 6.1%Language:Objective-C 1.6%