react-native navigation state maintained by redux
npm install rn-navigationRN-Navigation  
===

inspired by react-native-router-flux,yet another router for react-native,built on new NavigationExperimental API,easy to migrate with redux and other flux-like framework
Install
===
``javascript`
npm install rn-navigation --save
then you need link the dependenices
`javascript`
react-native link react-native-vector-icons
Useage
===
in your entry point (etc: index.ios.js),define your own routes by Scene component,and wrap all of routes with Router component
`javascript`
class Index extends React.Component{
render(){
const sceneProps = {
//scene props what you like to pass into scene components
}
return (
)
}
}
then create your own redux store
`javascript
import {routerReducer} from "rn-navigation"
const rootReducer = combineReducers({routerReducer})
connect(state=>({
navigationState:state.navigationState
}))(Index)
`
in scene component you can navigate to next,or go back to prev
`javascript``
this.props.navigationActions.pushScene("topic")
this.props.navigationActions.popScene()
just simple and easy,more instructions refer to API,or 中文文档
- fix some unknow bugs
- add more api documents