Gathering detailed insights and metrics for react-native-simple-navigation
Gathering detailed insights and metrics for react-native-simple-navigation
Gathering detailed insights and metrics for react-native-simple-navigation
Gathering detailed insights and metrics for react-native-simple-navigation
react-native-navigation-simple
Simple zero-dependency Javascript-only navigation for React Native
@navigationjs/react-native
Simple and well-tested React Native navigation
react-native-navigation-boilerplate
A simple cli to scaffold your react-native-navigation-v2 with redux
react-native-enroute
Simple and fast React Native router based on react-enroute and native navigation
npm install react-native-simple-navigation
Typescript
Module System
Node Version
NPM Version
73.1
Supply Chain
88.7
Quality
75.8
Maintenance
100
Vulnerability
100
License
TypeScript (100%)
Total Downloads
4,101
Last Day
2
Last Week
18
Last Month
41
Last Year
389
18 Commits
1 Branches
1 Contributors
Latest Version
1.2.0-re
Package Id
react-native-simple-navigation@1.2.0-re
Unpacked Size
36.68 kB
Size
7.66 kB
File Count
33
NPM Version
5.6.0
Node Version
9.4.0
Cumulative downloads
Total Downloads
Last day
100%
2
Compared to previous day
Last week
5.9%
18
Compared to previous week
Last month
51.9%
41
Compared to previous month
Last year
-11%
389
Compared to previous year
5
React Native lightweight library for navigation with swiping.
Only tried it on Android, so I can't say if it works on iOS device.
##Any sugestions or bugs?
Write them to: justinas.sid@gmail.com
yarn add react-native-simple-navigation
import { createRoutingComponent } from 'react-native-simple-navigation';
class One extends React.Component<NavigationProp> {
render() : React.ReactNode {
return <View style={{marginTop: 40}}><Button title='to next window!' onPress={() => this.props.navigate("two")}</View>
}
}
class Two extends React.Component {
render() : React.ReactNode {
return <View style={{marginTop: 40}}><Text>new text in new window</Text></View>
}
}
const routes = new Array<Route>();
routes.push({routeName: "one", routeComponent: One})
routes.push({routeName: 'two', routeComponent: Two})
const Navigation = createRoutingComponent(routes);
<View>
<Navigation />
</View>
Function createRoutingComponent recives two props: -routes -settings
routes is an array of Route objects, which contains:
settings can be not passed to the function, but you can pass an object, which contains:
No vulnerabilities found.
Reason
no binaries found in the repo
Reason
project is archived
Details
Reason
Found 0/14 approved changesets -- score normalized to 0
Reason
no effort to earn an OpenSSF best practices badge detected
Reason
security policy file not detected
Details
Reason
project is not fuzzed
Details
Reason
license file not detected
Details
Reason
branch protection not enabled on development/release branches
Details
Reason
SAST tool is not run on all commits -- score normalized to 0
Details
Reason
118 existing vulnerabilities detected
Details
Score
Last Scanned on 2025-02-03
The Open Source Security Foundation is a cross-industry collaboration to improve the security of open source software (OSS). The Scorecard provides security health metrics for open source projects.
Learn More