An open API service indexing awesome lists of open source software.

https://github.com/janiokq/react-native-simple-navigation

Simplified version of the navigator
https://github.com/janiokq/react-native-simple-navigation

navigation react-native

Last synced: 3 months ago
JSON representation

Simplified version of the navigator

Awesome Lists containing this project

README

          

# react-native-Simple-navigation

This is a the react-native simplified version of the **Navigator**

Characteristics of the currently supported

Physical devices accelerate animation Original animation

**methods**:

push

popN

replacePrevious

replaceAtIndex

onRouteChange

Gestures are not currently supported

use:

```
import NavRoad from 'react-native-Simple-navigation';

render(){
return(


{
//operation
}}
ref={(r)=> this.navigator = r }
initialRoute={{name: 'Index', component: TabView}}
renderScene={(route,NavRoad)=>{
return (

)
}
}
/>

)
}


```