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
- Host: GitHub
- URL: https://github.com/janiokq/react-native-simple-navigation
- Owner: janiokq
- Created: 2017-04-17T07:51:48.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2017-04-17T08:47:41.000Z (over 9 years ago)
- Last Synced: 2025-04-07T17:18:10.009Z (over 1 year ago)
- Topics: navigation, react-native
- Language: JavaScript
- Size: 2.93 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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 (
)
}
}
/>
)
}
```