instagram_bottom_nav_bar 3.0.11
instagram_bottom_nav_bar: ^3.0.11 copied to clipboard
Best bottom bar structure created to control page flow. You don't need to describe navigatorKey for each Bottom Bar Item. I've already do that.
example/lib/main.dart
import 'package:bottom_bar/pages/profile.dart';
import 'package:flutter/material.dart';
import 'package:instagram_bottom_nav_bar/instagram_tab_view.dart';
import 'package:instagram_bottom_nav_bar/widget/icon_type.dart';
import 'pages/home_page.dart';
import 'pages/test.dart';
main() {
runApp(const MyApp());
}
class MyApp extends StatelessWidget {
const MyApp({Key? key}) : super(key: key);
@override
Widget build(BuildContext context) {
return MaterialApp(
debugShowCheckedModeBanner: false,
home: Test(),
);
}
}