You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: README.md
+53-47
Original file line number
Diff line number
Diff line change
@@ -5,20 +5,32 @@
5
5
`react-native-router-flux` is a different API over `react-navigation`. It helps users to define all the routes in one central place and navigate and communicate between different screens in an easy way. But it also means that `react-native-router-flux` inherits all [limitations](https://reactnavigation.org/docs/en/limitations.html) and changes from updated versions.
6
6
7
7
### IMPORTANT NOTES
8
-
#### v4.1.0-beta.x is based on [React Navigation v3.x](https://reactnavigation.org/)
9
-
#### v4 is based on [React Navigation v2.x]. See [this branch](https://github.com/aksonov/react-native-router-flux/tree/v3) and [docs](https://github.com/aksonov/react-native-router-flux/blob/master/README3.md) for v3 based on deprecated React Native Experimental Navigation API. It is not supported and may not work with latest React Native versions.
8
+
9
+
#### v4.2.0-beta.x is based on [React Navigation v4.x](https://reactnavigation.org/)
10
+
11
+
#### v4.1.0-beta.x is based on [React Navigation v3.x](https://reactnavigation.org/docs/en/3.x/getting-started.html)
12
+
13
+
#### v4.0.x is based on [React Navigation v2.x]. See [this branch](https://github.com/aksonov/react-native-router-flux/tree/v3) and [docs](https://github.com/aksonov/react-native-router-flux/blob/master/README3.md) for v3 based on deprecated React Native Experimental Navigation API. It is not supported and may not work with latest React Native versions.
10
14
11
15
#### v4.0.0-beta.x is based on [React Navigation v1.5.x](https://reactnavigation.org/). See [this branch](https://github.com/aksonov/react-native-router-flux/tree/v4.0.0-beta) for this version. It is also not supported and may not work with the latest React Native versions.
* Based on latest [React Navigation](https://reactnavigation.org) API
84
-
* Separate navigation logic from presentation. You may now change navigation state directly from your business logic code - stores/reducers/etc. navigationStore
85
-
* Built-in state machine (v3 `Switch` replacement)
86
-
* Each `Scene` with `component` defined can have `onEnter`/`onExit`/`on` handlers.
87
-
*`onEnter`/`on` handler can be async.
88
-
* For 'truthy' return of `onEnter`/`on`, `success` handler (if defined) will be executed
89
-
* if `success` is a string then router will navigate to the `Scene` with that key
90
-
* in case of handler's failure, `failure` prop (if defined) will be run.
91
-
* Combining `onEnter`, `onExit`, `success`, and `failure` makes patterns like authentication, data validation, and conditional transitions simple and intuitive.
92
-
*[MobX](https://mobx.js.org/)-friendly: all scenes are wrapped with `observer`. You may subscribe to `navigationStore` (`Actions` in v3) and observe current navigation state. Not applicable to Redux.
93
-
* Flexible Nav bar customization, currently not allowed by React Navigation:
* Inheritance of scene attributes allow you to avoid any code/attribute duplications. Adding `rightTitle` to a scene will apply to all child scenes simultaneously. See example app.
97
-
* Access to your app navigations state as simple as `Actions.state`.
98
-
* Use `Actions.currentScene` to get name of current scene.
87
+
88
+
- Based on latest [React Navigation](https://reactnavigation.org) API
89
+
- Separate navigation logic from presentation. You may now change navigation state directly from your business logic code - stores/reducers/etc. navigationStore
90
+
- Built-in state machine (v3 `Switch` replacement)
91
+
- Each `Scene` with `component` defined can have `onEnter`/`onExit`/`on` handlers.
92
+
-`onEnter`/`on` handler can be async.
93
+
- For 'truthy' return of `onEnter`/`on`, `success` handler (if defined) will be executed
94
+
- if `success` is a string then router will navigate to the `Scene` with that key
95
+
- in case of handler's failure, `failure` prop (if defined) will be run.
96
+
- Combining `onEnter`, `onExit`, `success`, and `failure` makes patterns like authentication, data validation, and conditional transitions simple and intuitive.
97
+
-[MobX](https://mobx.js.org/)-friendly: all scenes are wrapped with `observer`. You may subscribe to `navigationStore` (`Actions` in v3) and observe current navigation state. Not applicable to Redux.
98
+
- Flexible Nav bar customization, currently not allowed by React Navigation:
- Inheritance of scene attributes allow you to avoid any code/attribute duplications. Adding `rightTitle` to a scene will apply to all child scenes simultaneously. See example app.
102
+
- Access to your app navigations state as simple as `Actions.state`.
103
+
- Use `Actions.currentScene` to get name of current scene.
99
104
100
105
### Helpful tips if you run into some gotchas
101
106
102
107
## Using Static on Methods with HOCs
103
-
* This is just a helpful tip for anyone who use the onExit/onEnter methods as a static method in their Component Class. Please refer to this link https://reactjs.org/docs/higher-order-components.html.
104
108
105
-
* If your Scene Components are Wrapped in Custom HOCs/ Decorators, then the static onExit/onEnter methods will not work as your Custom HOCs will not copy the static methods over to your Enhanced Component.Use the npm package called hoist-non-react-statics to copy your Component level static methods over to your Enhanced Component.
109
+
- This is just a helpful tip for anyone who use the onExit/onEnter methods as a static method in their Component Class. Please refer to this link https://reactjs.org/docs/higher-order-components.html.
110
+
111
+
- If your Scene Components are Wrapped in Custom HOCs/ Decorators, then the static onExit/onEnter methods will not work as your Custom HOCs will not copy the static methods over to your Enhanced Component.Use the npm package called hoist-non-react-statics to copy your Component level static methods over to your Enhanced Component.
106
112
107
113
## Implement onBack from your Scene after declaring it
108
114
109
-
* If you have a Scene where in you want to make some changes to your Component State when Back button is pressed, then doing this
115
+
- If you have a Scene where in you want to make some changes to your Component State when Back button is pressed, then doing this
Support this project by becoming a sponsor. Your logo will show up here with a link to your website. [[Become a sponsor](https://opencollective.com/react-native-router-flux#sponsor)]
0 commit comments