I'm new to React Native (coming from web React), and I'm figuring out how navigation works with React Native.
My first step was to check Facebook's guide about navigation: https://facebook.github.io/react-native/docs/navigation.html. It shows me three solutions: Navigator, NavigatorIOS and NavigationExperimental. The 2nd one is unmaintained, the 1st one is stateful. So I went along with the NavigationExperimental one, which was redux-like and pretty easy to play with.
I then had a look on Google, and found react-native-router-flux. I read their doc, the mini-tutorial looked really simple, the syntax seemed more familiar to web devs like me, but I don't get the underlying difference between this and NavigationExperimental. Is react-native-router-flux something on top of NavigationExperimental?
Thanks.