bottom_ani_nav_bar 0.0.2 copy "bottom_ani_nav_bar: ^0.0.2" to clipboard
bottom_ani_nav_bar: ^0.0.2 copied to clipboard

discontinued
outdated

Animated Bottom Navigation bar

BottomAniNavBar #

Animated bottom navigation bar for Flutter

Note: This is a modified version of "BottomNavigationBar" from Flutter team

Getting Started #

Add the dependency in pubspec.yaml:

dependencies:
  bottom_ani_nav_bar: ^0.0.2

Import it #

import 'package:bottom_ani_nav_bar/bottom_ani_nav_bar.dart';

Usage #

// Imported as BottomAniNavBar
BottomAniNavBar(
    unselectedItemColor: Colors.red,
    currentIndex: _currentIndex,
    onTap: (int index) {
        setState(() {
            _currentIndex = index;
        });
    },
    items: [
        BottomNavigationBarItem(
            icon: Icon(Icons.home),
            title: Text(
                'Home',
                style: textStyle,
            )
        ),
        BottomNavigationBarItem(
            icon: Icon(Icons.search),
            title: Text(
                'Search',
                style: textStyle,
            )
        )
    ]);

Home Page screenshot

Getting Started #

This project is a starting point for a Flutter plug-in package, a specialized package that includes platform-specific implementation code for Android and/or iOS.

For help getting started with Flutter, view our online documentation, which offers tutorials, samples, guidance on mobile development, and a full API reference.

4
likes
30
pub points
0%
popularity

Publisher

unverified uploader

Animated Bottom Navigation bar

Repository (GitHub)
View/report issues

License

Apache-2.0 (LICENSE)

Dependencies

flutter

More

Packages that depend on bottom_ani_nav_bar