如何使用wix react native navigation v2通过单击基于选项卡的应用程序的底部选项卡来打开模式/操作表?
目前,我正在使用以下软件包和版本:
反应原生:“0.59.8”
反应:“16.8.3”
反应原生导航:“^ 2.13.2”
react-native-image-crop-picker: "^0.24.1"
这是我的路线/导航文件
Promise.all([
Foundation.getImageSource("home", 40),
FontAwesome5.getImageSource("user",30),
Feather.getImageSource("camera",25),
]).then(sources => {
Navigation.setRoot({
root: {
sideMenu: {
center: {
bottomTabs: {
options: {
bottomTabs: {
backgroundColor: 'white',
titleDisplayMode: 'alwaysHide'
},
},
children: [
{
stack: {
children: [{
component: {
name: 'HomeScreen',
passProps: {
text: 'This is tab 1' }
}
}
}
}
]
},
},
},
}
});
});
我想要的是,当用户单击camera选项卡时,它应该打开一个模式/操作表,它将显示他应该从相机胶卷中选择图像还是应该打开相机的选项。为此,我想使用react-native-image-crop-picker. 但是我怎样才能做到这一点,或者我怎样才能自定义按钮标签按下动作?
呼唤远方
相关分类