React Navigation V5 Hide Bottom Tabs

后端 未结 8 1535
轻奢々
轻奢々 2021-01-05 06:35

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

8条回答
  •  醉话见心
    2021-01-05 06:53

    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.

提交回复
热议问题