circle_bnb 0.0.3
circle_bnb: ^0.0.3 copied to clipboard
A customizable circular bottom navigation bar for Flutter apps with smooth animations and multiple style options.
import 'package:flutter/material.dart';
import 'package:example/pages/app_home_page.dart';
void main() {
runApp(
const App()
);
}
class App extends StatelessWidget {
const App({super.key});
@override
Widget build(BuildContext context) {
return MaterialApp(
debugShowCheckedModeBanner: false,
theme: ThemeData(
primaryColor: Colors.blue,
highlightColor: Colors.transparent,
splashColor: Colors.blue.shade200,
),
home: const AppHomePage(),
);
}
}