我想在我的本机应用程序上设置初始屏幕,但不要将其作为选项卡。
我的意思是我希望能够在屏幕外找到navigator.push
,就像这样。
Navigation.startTabBasedApp({
tabs: [
screen: 'Signup'
]
})
Navigator.push({
screen: 'Landing',
})
答案 0 :(得分:3)
请参阅此文档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)