【发布时间】:2018-11-12 14:21:34
【问题描述】:
我是 react-native 的新手,我正在开发一个 react-native 项目,我使用 wix 的 react-native-navigation 并没有找到任何解决方案如何从堆栈中清除 SplashScreen 或任何我不需要再次返回的屏幕。
我用它在 2 秒后导航。
componentWillMount(){
setTimeout(
() => {
this.props.navigator.push({
screen: 'SampleApp.LoginScreen',
})
}, 2000
);
}
这在我的 index.js
export function registerScreens() {
Navigation.registerComponent('SampleApp.SplashScreen', () => SplashScreen);
Navigation.registerComponent('SampleApp.LoginScreen', () => LoginScreen);
}
请帮我找到我需要致电finish() 的解决方案,或者还有其他问题。提前致谢
【问题讨论】:
-
尝试阅读official website上的官方文档
标签: android react-native react-native-android wix-react-native-navigation