react native BottomTabNavigator 点击打开新页面

最近用rn 做项目, 需要一个需求, 底部tab 中间的tab 不是切换页面, 是跳转到新页面.

查了下 api文档

1
2
3
4
5
6
7
8
9
10
11
screen: CompanyJobManager,
navigationOptions: {
tabBarLabel: " ",
tabBarIcon: ({tintColor, focused}) => (
<Image source={require('./images/add.png')} resize="contains"
style={{width: 40, height: 40, marginTop: 10}}/>
),
tabBarOnPress: ({navigation, defaultHandle}) => {
navigation.push('PostJob', {isUpdate: false})
}
},
Adhere to original technology sharing, your support will encourage me to continue to create!