Attempting to hide/show the bottom navigation bar on React-Native app
When wrapping the navigation tab With <Animated.view>
the navigation styling collapses and the bottom tab bar jumps to the top of the screen and requires much styling to put it back to to place.
Using React-Native-Reanimated is there a way to animate the bottom tab appearance?
Working example:
import { createBottomTabNavigator } from '@react-navigation/bottom-tabs';
...
const Tab = createBottomTabNavigator();
...
<Tab.Navigator tabBarStyle: {
display: tabBarVisability,>
...
</Tab.Navigator>
Desired:
<Animated.View>
<Tab.Navigator>
</Tab.Navigator>
</Animated.View>