We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Tell us which versions you are using:
<TouchableOpacity onPress={ Actions.getLogin } > or <TouchableOpacity onPress={ () => Actions.getLogin() } > should navigate to getLogin screen
<TouchableOpacity onPress={ Actions.getLogin } >
<TouchableOpacity onPress={ () => Actions.getLogin() } >
onPress={Actions.getLogin}
onPress={() => Actions.getLogin() }
The text was updated successfully, but these errors were encountered:
It's definitely on your side, you must have done something wrong in your own implementation. Actions.key works fine on Android.
Actions.key
Sorry, something went wrong.
No branches or pull requests
Version
Tell us which versions you are using:
Expected behaviour
<TouchableOpacity onPress={ Actions.getLogin } >
or
<TouchableOpacity onPress={ () => Actions.getLogin() } >
should navigate to getLogin screen
Actual behaviour
onPress={Actions.getLogin}
oronPress={() => Actions.getLogin() }
does not navigate to getLogin screen.The text was updated successfully, but these errors were encountered: