We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
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
push = async () => { return Navigation.push(this.props.componentId, { component: { id: 'ChildId', name: Screens.Pushed, }, }) .then((pushId) => new Promise<string>((resolve) => setTimeout(() => resolve(pushId), 100))) .then((pushId) => { this.setState({ pushPromiseResult: `push promise resolved with: ${pushId}`, }); return pushId; }) // When time out is removed the pop promise is rejected. <============ here is the problem .then((popId) => new Promise<string>((resolve) => setTimeout(() => resolve(popId), 500))) .then((popId) => Navigation.pop(popId)) .then((popId) => { this.setState({ popPromiseResult: `pop promise resolved with: ${popId}`, }); }) .catch((err) => console.log(err)); };
No response
React Native Navigation version: React Native version: Has Fabric (React Native's new rendering system) enabled: (yes/no) Node version: Device model: iOS version:
The text was updated successfully, but these errors were encountered:
No branches or pull requests
What happened?
What was the expected behaviour?
No response
Was it tested on latest react-native-navigation?
Help us reproduce this issue!
No response
In what environment did this happen?
React Native Navigation version:
React Native version:
Has Fabric (React Native's new rendering system) enabled: (yes/no)
Node version:
Device model:
iOS version:
The text was updated successfully, but these errors were encountered: