-
Notifications
You must be signed in to change notification settings - Fork 2.1k
New issue
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
How to avoid opening the page two times #3091
Comments
When I double click ,the page opening two times. |
@nfq6612 I'm thinking about something like this: onPress={() => {
const currentScene = Actions.currentScene;
if (currentScene !== 'login') {
Actions.push('login');
}
}} |
Please check latest beta.40, it should solve this issue |
no, this issue is happening yet |
The problem exists on 4.0.6, Downgraded to 4.0.1 and the double click issue is gone. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Expected behaviour
How to avoid opening the page two times
The text was updated successfully, but these errors were encountered: