dot_bottom_navigation_bar_getx 0.0.1
dot_bottom_navigation_bar_getx: ^0.0.1 copied to clipboard
A Flutter package providing a customizable bottom navigation bar with nested screens for seamless app navigation and user experience.
example/lib/main.dart
import 'package:dot_bottom_navigation_bar_getx/dot_bottom_navigation_bar_getx.dart';
import 'package:flutter/material.dart';
void main() {
runApp(const MyApp());
}
class MyApp extends StatelessWidget {
const MyApp({super.key});
@override
Widget build(BuildContext context) {
return MaterialApp(
debugShowCheckedModeBanner: false,
title: 'Dot Bottom Navigation Bar',
theme: ThemeData(
colorScheme: ColorScheme.fromSeed(seedColor: Colors.deepPurple),
useMaterial3: true,
),
home: const BottomNavigationView());
}
}