PersistentBottomNavBar icon indicating copy to clipboard operation
PersistentBottomNavBar copied to clipboard

when you open the keyboard it keeps the size of the bottom navigation bar

Open Isra0210 opened this issue 1 year ago • 7 comments

image

persistent_bottom_nav_bar: ^5.0.2

flutter doctor:

Doctor summary (to see all details, run flutter doctor -v): [√] Flutter (Channel stable, 3.13.1, on Microsoft Windows [versÆo 10.0.22621.2134], locale en-US) [√] Windows Version (Installed version of Windows is version 10 or higher) [√] Android toolchain - develop for Android devices (Android SDK version 34.0.0) [√] Chrome - develop for the web [√] Visual Studio - develop Windows apps (Visual Studio Build Tools 2019 16.11.27) [√] Android Studio (version 2022.3) [√] VS Code (version 1.81.1) [√] Connected device (4 available) [√] Network resources

• No issues found!

Isra0210 avatar Aug 26 '23 00:08 Isra0210

i have the same issue and i cannot find anyway to get rid of it

abdou-tech-maker avatar Sep 14 '23 01:09 abdou-tech-maker

i have the same issue and i cannot find anyway to get rid of it

You can check when the keyboard is open with MediaQuery.of(context).viewInsets.bottom > 0 to show the component or not

Isra0210 avatar Sep 14 '23 17:09 Isra0210

I have the same problem, I thought it would be fixed in a newer version but this problem persists.

RamyGomaa avatar Jan 13 '24 11:01 RamyGomaa

i have the same issue and i cannot find anyway to get rid of it

You can check when the keyboard is open with MediaQuery.of(context).viewInsets.bottom > 0 to show the component or not

Can you give me a code example of where you should use this line, i have tried doing this, but the only thing that worked was me opening screens that have text fields using this

PersistentNavBarNavigator.pushNewScreen(
            context,
            screen: const ChatIntro(),
            withNavBar: false, // OPTIONAL VALUE. True by default.
            pageTransitionAnimation: PageTransitionAnimation.fade,
          );

RamyGomaa avatar Jan 13 '24 11:01 RamyGomaa

Hello. Is there any news how to handle this issue? I have the same trouble.

terrium88 avatar Feb 05 '24 18:02 terrium88

Same issue

hortigado avatar Mar 15 '24 02:03 hortigado

Hello. Is there any news how to handle this issue? I have the same trouble.

PersistentTabView I used

hideNavigationBar: MediaQuery.of(context).viewInsets.bottom > 0 ? true : false,

RamyGomaa avatar Mar 15 '24 09:03 RamyGomaa