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
Currently we manually store react-navigation state in redux, which is not recommended and is not really useful.
react-navigation
Instead we should be using navigator.dispatch for dispatching navigation actions, following this guide
navigator.dispatch
We should also get rid of the react-navigation-redux-helpers package, which would become useless.
react-navigation-redux-helpers
This is somewhat related to #1325
The text was updated successfully, but these errors were encountered:
It was even setup right and events weren't being handled by the custom reducers, because it was never combined into the root reducer.... #1361
Sorry, something went wrong.
remove react-navigation-redux-helpers!!!!!!
58c380c
infinitered/ignite-andross#277 moaazsidat/react-native-qrcode-scanner#161 moaazsidat/react-native-qrcode-scanner#177 moaazsidat/react-native-qrcode-scanner#136 react-native-camera/react-native-camera#1797 react-native-camera/react-native-camera#1686 react-native-camera/react-native-camera#1686 react-navigation/redux-helpers#87 react-navigation/redux-helpers#60 react-navigation/redux-helpers#53 https://www.youtube.com/watch?v=CnQ8N1KacJc Fixes #1326 The navigation actions were turned into ThunkActions and now directly call react-navigation's navigator.dispatch, which handles state internally Usages of the navigationActions were fixed Also QRcodeScanner was cleaned up a bit and hacked to properly re-enable the camera by re-rendering it (so it gets remounted). Now camera works again if you press back after scanning a QR code.
Closed by #1374
No branches or pull requests
Description
Currently we manually store
react-navigation
state in redux, which is not recommended and is not really useful.Instead we should be using
navigator.dispatch
for dispatching navigation actions, following this guideWe should also get rid of the
react-navigation-redux-helpers
package, which would become useless.This is somewhat related to #1325
The text was updated successfully, but these errors were encountered: