flutter_bottom_navigation_bar icon indicating copy to clipboard operation
flutter_bottom_navigation_bar copied to clipboard

Bottom bar stays hidden

Open wibimaster opened this issue 3 years ago • 3 comments

Hi !

Good job for this :)

I've just a little "issue" when I try it on desktop or Android device ; the bottom bar is hidden by default, and I have to go to calls page, scroll down, scroll up, and the bar appears

If I scroll down, the bar is hidden (that's what we want), but it doesn't appear on tab change

How to fix that ?

Thanks !

wibimaster avatar Jul 20 '21 10:07 wibimaster

Same issue any fix for this?

rick-ey avatar Sep 03 '21 17:09 rick-ey

AnimationController initial value defaults to lowerBound, initializing with upperBound addressed the issue for me. animationController = AnimationController( vsync: this, duration: Duration(milliseconds: 300), value: 1);

rick-ey avatar Sep 03 '21 17:09 rick-ey

Thank you @rick-ey , this also solved my problem.

ALI-SAMPSON avatar Oct 14 '22 23:10 ALI-SAMPSON