react-native-navigation |设置初始屏幕而不将其作为标签?

时间:2017-09-05 17:04:36

标签: reactjs react-native react-native-navigation

我想在我的本机应用程序上设置初始屏幕,但不要将其作为选项卡。

我的意思是我希望能够在屏幕外找到navigator.push,就像这样。

Navigation.startTabBasedApp({
  tabs: [
    screen: 'Signup'
  ]
})

Navigator.push({
  screen: 'Landing',
})

1 个答案:

答案 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)