React Navigation - 509dave16/react-native-prototypes GitHub Wiki

Summary

React Navigation consists of Navigators, Routers, and Views. We can get by with just Navigators for now until we need to do something more customized. A Navigator is configured with a { path: { screen: ComponentOrNavigator } , ... } object. All screens will receive the navigation prop. This prop can be used to access state.params object and the navigate function, which can initiate navigation to a particular path like so: navigate('path', { param1:'someParam' }).`

Keys to Usage

  • Driver Components should be used as the screens of Navigators. NOT View Components.
  • not sure what else...