PersistentBottomNavBar
PersistentBottomNavBar copied to clipboard
A highly customizable persistent bottom navigation bar for Flutter
It would be good to have an optional property or widget builder for a ripple/splash or any touch effect for the tab items (`PersistentBottomNavBarItem`) . for example using an `InkResponse`...
pushNewScreen( context, screen: SomeScreen(), withNavBar: false, ); Using such code causes a lot of rebuild to the PersistentTabView screens. I have a Home Screen (Stack: Level 0) Then I've navigated...
how can i from opened BottomSheet? ```dart showGeneralDialog( ... context: context, useRootNavigator: true, pageBuilder: (context, anim1, anim2) { return StoreUserAddress(); } ... ); ``` `StoreUserAddress` class: ```dart ... Navigator.pushNamed(context, '/storeUserAddress',...
Hi, There are any way to load for the first time all screens on persistant Navigation bar? It is taking a while to load the screens when I tap over...
Is there a way to prevent screen rebuilds when `hideNavigationBar` value changes? I've set up the nav bar as shown below (the Home Page). Then with the help of a...
I tried to change the circle size of center tab with this code and doesn't work. How can I achieve that? ``` PersistentBottomNavBarItem( icon: Container( width: 80, height: 80, padding:...
in my route, i route from StoreItemsScreen -> StoreItemScreen. both screens are under the "home" tab of the persistent navigation bar. I am using _named routes_. StoreItemScreen needs to accept...
after navigating to second page for example: ```dart Navigator.pushNamed( context, '/page/two', arguments: { 'city': 'Berlin', 'country': 'Germany', }, ); ``` i get this route name and this is incorrect: ```...
Just fixes a small typo
Throw errors like this: ``` ════════ Exception caught by rendering library ═════════════════════════════════ RenderBox was not laid out: RenderCustomPaint#20b8b relayoutBoundary=up8 'package:flutter/src/rendering/box.dart': Failed assertion: line 1940 pos 12: 'hasSize' The relevant error-causing...