easy_bottom_nav 0.0.1
easy_bottom_nav: ^0.0.1 copied to clipboard
A customizable and responsive bottom navigation bar for Flutter applications.
import 'package:flutter/material.dart';
import 'package:easy_bottom_nav/easy_bottom_nav.dart';
void main() {
runApp(const MyApp());
}
class MyApp extends StatelessWidget {
const MyApp({super.key});
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'EasyBottomNav Demo',
theme: ThemeData(
primarySwatch: Colors.blue,
),
home: Scaffold(
appBar: AppBar(
title: const Text('EasyBottomNav Demo'),
),
body: const Center(
child: Text('Hello, World!'),
),
),
);
}
}