我想在我的反应本机应用程序上设置初始屏幕,但不将其作为选项卡。
我的意思是我希望能够到达navigator.push
屏幕外面,就像这样。
Navigation.startTabBasedApp({
tabs: [
screen: 'Signup'
]
})
Navigator.push({
screen: 'Landing',
})
我想在我的反应本机应用程序上设置初始屏幕,但不将其作为选项卡。
我的意思是我希望能够到达navigator.push
屏幕外面,就像这样。
Navigation.startTabBasedApp({
tabs: [
screen: 'Signup'
]
})
Navigator.push({
screen: 'Landing',
})
请参阅此文档https://wix.github.io/react-native-navigation/#/top-level-api
你需要使用Navigation.startSingleScreenApp
. 接下来,如果您需要打开标签栏,只需Navigation. startTabBasedApp
从应用程序中的任何位置调用。
https://wix.github.io/react-native-navigation/#/screen-api
另外,你可以试试resetTo(params)