BilalShahid13 / PersistentBottomNavBar

A highly customizable persistent bottom navigation bar for Flutter
BSD 3-Clause "New" or "Revised" License
507 stars 368 forks source link

Navbar does not disappear when the keyboard appears ..... #337

Open Irfadg opened 10 months ago

Irfadg commented 10 months ago

@override Widget build(BuildContext context) { badgeProvider = context.watch(); 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.

isamed92 commented 5 months ago

hi, any updates about this issue?