Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Hide and Show createBottomTabNavigator tabbar with Animation in react-native

I am using createBottomTabNavigator for tab bar.

I can hide and show tabbar using tabBarVisible prop by setting it true or false.

Problem I have is ,I want it to hide with animation.

any links will be helpful.

like image 726
Jaydeep Galani Avatar asked Sep 17 '25 23:09

Jaydeep Galani


1 Answers

You might wanna use new Animated.Value(0) And change the bottom value of the tab. https://github.com/react-navigation/react-navigation/issues/888 this has a solution.

like image 115
Subhendu Kundu Avatar answered Sep 19 '25 13:09

Subhendu Kundu