bottom_navigation_bar_kit 1.0.0
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.
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(),
);
}
}