React Navigation V5 Hide Bottom Tabs

后端 未结 8 1515
轻奢々
轻奢々 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条回答
  •  旧时难觅i
    2021-01-05 07:01

    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 (
    
      
      
    
      );
    }
    

提交回复
热议问题