我正在尝试将基于选项卡的菜单和侧边栏菜单放在一个页面上,以用于 react-native 应用程序。目前只显示其中一个,基于选项卡的菜单或侧边栏菜单。这是我的导航代码。我用过 wix react-native-navigation。目标是使两个菜单都在单个屏幕上工作。请帮助。
Navigation.setRoot({
root: {
bottomTabs: {
id: 'BottomTabsId',
children: [
{
component: {
name: 'SignIn',
options: {
bottomTab: {
fontSize: 12,
text: 'Sign In',
icon: require('./signin.png')
}
}
},
},
{
component: {
name: 'SignUp',
options: {
bottomTab: {
text: 'Sign Up',
fontSize: 12,
icon: require('./signup.png')
}
}
},
},
],
},
sideMenu: {
left: {
component: {
name: 'reactNativeInit.SideDrawer',
passProps: {
side: 'left'
}
}
},
center: {
stack: {
id: "stack1",
children: [
{
component: {
name: 'reactNativeInit.main'
}
}
]
}
},
leftButtons: [
{
id: 'sideMenu'
}
]
}
}
});