Я пытаюсь hide bottomTabbar
при нажатии на кнопку.
В моем файле App.js есть мой ButtomTabNavigator
:
const ButtomTabNavigator = createBottomTabNavigator(
{
screenOne: {
screen: RealReviewMain,
navigationOptions: ({ navigation }) => ({
tabBarVisible: true,
})
},
screenTwo: {
screen: RealReviewMain,
//Here I set the tabbarVisible to true
navigationOptions: ({ navigation }) => ({
tabBarVisible: true,
})
},
},
)
Из ScreenTwo я пытаюсь hide bottom tabbar
, используя onPress
<TouchableOpacity
onPress={()=> {
this.props.navigation.setParams({ tabBarVisible: false });
}}/>
Это правильный способ сделать это? ничего не происходит.
Буду очень признателен за любой совет или комментарий! Заранее спасибо!