It's important to note that when using such a setup,
> you don't manually navigate to the Home screen
by calling navigation.navigate('Home') or any other method. React Navigation will automatically navigate to the correct screen.
Just remove manual navigate to your home screen.
*Example in your Login Screen or Sign In Screen*
//Login API call Here
Alert.alert('Welcome!','Login Successful! How are you today?')
navigation.navigate('Home') <---- REMOVE THIS LINE OF CODE
It's important to note that when using such a setup,
> you don't manually navigate to the Home screen
by calling navigation.navigate('Home') or any other method. React Navigation will automatically navigate to the correct screen.
Just remove manual navigate to your home screen.
*Example in your Login Screen or Sign In Screen*
//Login API call Here
Alert.alert('Welcome!','Login Successful! How are you today?')
navigation.navigate('Home') <---- REMOVE THIS LINE OF CODE