I am new to react native and react-navigator and would like to achieve this setup:
- I already have SignUpScreens, from SignUpScreen01 - SignUpScreen05 which are all embedded into one StackNavigator, I have no problem with that, and the last one (SignUpScreen05) is actually the content of the app itself
- Now for the returning user, I have one LoginScreen, which should skip directly to SignUpScreen05 (content, which is a TabNavigator) upon successful login.
I have no idea how to linked those up. If I put LoginScreen into my StackNavigator, I can navigate everything correctly, but during the signup process, user can goBack to the LoginScreen. SignUpScreen05 (content) user can also goBack to SignUpScreen which is not correct.
If I don't put them into the StackNavigator, I have no idea how to navigate from the LoginScreen. If possible, those (content and login) shouldn't be in the StackNavigator as I think those should be in different module, but I am not really sure how this should actually be done in react-navigator..
Any ideas? Thanks in advance!