PersistentBottomNavBar
PersistentBottomNavBar copied to clipboard
A highly customizable persistent bottom navigation bar for Flutter
what am i missing in here? here is my code: `import 'package:airfryer_delight/features/add_recipe/views/add_recipe.dart'; import 'package:flutter/material.dart'; import 'package:persistent_bottom_nav_bar/persistent_tab_view.dart'; import '../../helpers/colorbook.dart'; import '../articles/views/articles.dart'; import '../home/views/home.dart'; import '../profile/views/profile.dart'; import '../recipes/views/recipes.dart'; class BNB extends StatefulWidget...
fix #308
My PersistentTabView with 5 buttons has a PersistentTabController, 3 of the buttons change screens (defined in the `screens:` attribute), the other 2 raise modals. For the modal buttons, I can...
Hello, I keep getting this error on a custom nav bar : ════════ Exception caught by widgets library ═══════════════════════════════════ If you declare the onWillPop function, you will have to handle...
Fixed OnWillPop Assert Error When Using Custom Persistent Tab View by changing OnWillPop != null to OnWillPop == null To correct the condition which invoked the asset throw
How can I make the middle item a floating button in style15
I have 3 tabs if second bottom navigation icon is clicked then I am opening a popup and from that popup I am using PersistentNavBarNavigator.pushNewScreen( context, screen: DashboardScreen(), withNavBar: true,...
How use cubit flutter_bloc with this library ?? @emagnier @ne-ray @Rohithgilla12 @NapoleonS
I have this requirement where every time I visit a tab it should behave like it is tapped as the first time. From that I mean the complete layout needs...
Normally hideNavigationBarWhenKeyboardShows works perfectly. But if PersistentTabView is a child (body) of a scaffold (I needed a an app bar that's why I had to use a scaffold) , opening...