bottom_navigation_bar_kit 1.0.0 copy "bottom_navigation_bar_kit: ^1.0.0" to clipboard
bottom_navigation_bar_kit: ^1.0.0 copied to clipboard

A highly customizable Flutter bottom navigation bar package supporting 10 animation styles, light/dark mode, and Material 3 / Cupertino design systems.

example/lib/main.dart

import 'package:flutter/material.dart';
import 'screens/style_gallery_screen.dart';

void main() {
  runApp(const BottomNavKitExample());
}

class BottomNavKitExample extends StatelessWidget {
  const BottomNavKitExample({super.key});

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'Bottom Nav Kit Example',
      debugShowCheckedModeBanner: false,
      theme: ThemeData(
        colorScheme: ColorScheme.fromSeed(seedColor: Colors.deepPurple),
        useMaterial3: true,
      ),
      home: const StyleGalleryScreen(),
    );
  }
}
1
likes
160
points
77
downloads

Documentation

API reference

Publisher

verified publisherdimassfeb.com

Weekly Downloads

A highly customizable Flutter bottom navigation bar package supporting 10 animation styles, light/dark mode, and Material 3 / Cupertino design systems.

Repository (GitHub)
View/report issues

License

MIT (license)

Dependencies

flutter

More

Packages that depend on bottom_navigation_bar_kit