animated_bottom_nav_bar_plus 1.3.4 copy "animated_bottom_nav_bar_plus: ^1.3.4" to clipboard
animated_bottom_nav_bar_plus: ^1.3.4 copied to clipboard

Animated and highly customizable bottom navigation bar for Flutter applications. It offers a smooth and attractive navigation experience for users, with easy integration into any Flutter project.

example/lib/main.dart

import 'package:animated_bottom_nav_bar_plus/animated_bottom_nav_bar_plus.dart';
import 'package:flutter/material.dart';

void main() => runApp(MyApp());

class MyApp extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'Material App',
      home: Scaffold(
        appBar: AppBar(
          title: const Text('Material App Bar'),
        ),
        body: AnimatedBottomNavBarPlus(
          initialPage: 0,
          onCenterButtonStateChanged: (value) {
            print('onButtonStateChanged $value');
          },
          backgroundColor: Colors.white,
          floatingButtonStyles: FloatingButtonStyles(),
          colorButtonDisabled: Colors.grey,
          onTapFloatingButtonLeft: () {
            print('onTapFloatingButtonLeft');
          },
          onTapFloatingButtonRight: () {
            print('onTapFloatingButtonRight');
          },
          onTapFloatingButtonTop: () {
            print('onTapFloatingButtonTop');
          },
          navBarItems: [
            NavBarItem(icon: Icons.home, labelText: 'Home'),
            NavBarItem(icon: Icons.search, labelText: 'Search'),
            NavBarItem(icon: Icons.person, labelText: 'Profile'),
            NavBarItem(icon: Icons.settings, labelText: 'Settings'),
          ],
          pages: const [
            Center(child: Text('Home')),
            Center(child: Text('Search')),
            Center(child: Text('Profile')),
            Center(child: Text('Settings')),
          ],
        ),
      ),
    );
  }
}
1
likes
140
points
25
downloads

Publisher

verified publishercodbytes.com

Weekly Downloads

Animated and highly customizable bottom navigation bar for Flutter applications. It offers a smooth and attractive navigation experience for users, with easy integration into any Flutter project.

Repository (GitHub)
View/report issues

Documentation

API reference

License

BSD-2-Clause (license)

Dependencies

flutter, plugin_platform_interface

More

Packages that depend on animated_bottom_nav_bar_plus