flutter_bottom_navigation_bar
flutter_bottom_navigation_bar copied to clipboard
Bottom bar stays hidden
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 !
Same issue any fix for this?
AnimationController initial value defaults to lowerBound, initializing with upperBound addressed the issue for me.
animationController = AnimationController( vsync: this, duration: Duration(milliseconds: 300), value: 1);
Thank you @rick-ey , this also solved my problem.