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
Let's suppose that you want to hide tabs when you are entering Settings. Just add navigation in your constructor:
function SettingsStackScreen({ navigation ) { navigation.setOptions({ tabBarVisible: false }) return ( ) }
This code should work.