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
examples are focused on react-js. I wonder how can this be used with react-router-native?
The text was updated successfully, but these errors were encountered:
Hello. Any updates on this?
Sorry, something went wrong.
I'm using it by creating the history like this:
import { createMemoryHistory } from 'history' import { Alert } from 'react-native' const history = createMemoryHistory({ getUserConfirmation: (message, callback) => { Alert.alert('Confirm', message, [ { text: 'Cancel', onPress: () => callback(false) }, { text: 'OK', onPress: () => callback(true) } ]) } })
All other configuration is the same as in the Usage section in the Readme. 😄
And the comment in #194 may help.
No branches or pull requests
examples are focused on react-js. I wonder how can this be used with react-router-native?
The text was updated successfully, but these errors were encountered: