I would like to be able to hide the tabs on a screen using React Native Navigation v5.
I\'ve been reading the documentation but it doesn\'t seem like they\'ve update
Use You Looking for Nested Screen Visible then Tab Bar Options Should be hide than Use this Simple Condition in StackNavigator Funtions.
function HistoryStack({navigation, route}) {
if (route.state.index === 0) {
navigation.setOptions({tabBarVisible: true});
} else {
navigation.setOptions({tabBarVisible: false});
}
return (
);
}