classic_navigation_bar 0.1.2
classic_navigation_bar: ^0.1.2 copied to clipboard
A customizable bottom navigation bar for Flutter with smooth animations and flexible styling.
example/lib/main.dart
import 'package:flutter/material.dart';
import 'navigation_screen/navigation_screen.dart';
void main() {
runApp(const MyApp());
}
class MyApp extends StatelessWidget {
const MyApp({super.key});
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'Classic Navigation Bar Example',
theme: ThemeData(
primarySwatch: Colors.blue,
),
home: const NavigationScreen(),
);
}
}