Here you can use the below code in Screen2 Component like:
import React from "react"
import { View, Text } from "react-native";
const Screen2 = props => {
return (
<View style={{ flex: 1, alignItems: "center", justifyContent: "center" }}>
<Text>SCREEN 2</Text>
</View>
);
};
Screen2.navigationOptions = navData => {
return {
tabBarVisible: false,
};
};
export default Screen2;
it will remove the bottom tab bar for the specific screen containing in createBottomTab Navigator
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…