PersistentBottomNavBar
PersistentBottomNavBar copied to clipboard
Navbar does not disappear when the keyboard appears .....
@override Widget build(BuildContext context) { badgeProvider = context.watch<BadgeProvider>(); widgetContext = context; return Scaffold( key: _scaffoldKey, extendBody: true, extendBodyBehindAppBar: true, body: PersistentTabView( context, controller: _controller, screens: screens, items: _navBarsItems(), confineInSafeArea: true, backgroundColor: Color(0xFFEFF4F8), handleAndroidBackButtonPress: true, resizeToAvoidBottomInset: false, stateManagement: true, navBarHeight: MediaQuery.of(context).viewInsets.bottom > 0 ? 0.0 : 60, hideNavigationBarWhenKeyboardShows: true, margin: EdgeInsets.all(0.0), popAllScreensOnTapOfSelectedTab: true, popActionScreens: PopActionScreensType.all, bottomScreenMargin: 0.0, onWillPop: (context) async { Helper.of(context!).onWillPop(); return true;
},
version : persistent_bottom_nav_bar: ^4.0.2
please Help.
hi, any updates about this issue?