Research
Security News
Quasar RAT Disguised as an npm Package for Detecting Vulnerabilities in Ethereum Smart Contracts
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
@expo/react-native-navigator
Advanced tools
Route-centric navigation built on top of React Native's Navigator
Deprecation Warning There are a few bugs in ex-navigator that require mutation of the state for the state to pass through the Navigator [Issue 110].
It's highly recommended to use the new ex-navigation instead as it's a powered by React Native's "NavigationExperimental".It's recommend to use react-navigation instead.
ExNavigator is a scene navigator that is centered around routes and is built on top of React Native's Navigator. You define ExRoutes, which are plain JavaScript objects with functions to render the scene for the route and the components to display in the nav bar.
The API is in ExRoute.js and ExRouteRenderer.js.
Otherwise ExNavigator is very similar to Navigator.
This post explains the ideas that are in ExNavigator and how we use it so you can assess whether it is useful for your project, too.
npm install @expo/react-native-navigator --save
ExNavigator is compatible with React Native 0.16 and newer.
Github user Thorenandresen has two very simple bare bones projects showing ExNavigator in use:
ExNavigator's component API looks very similar to Navigator's. You specify a routeStack
and/or initialRoute
, along with some styles. ExNavigator will render the navigation bar for you and accepts some props to style its contents. See ExNavigator.propTypes
for the list of accepted props.
You must use JavaScript's import
keyword to import ExNavigator. Do not use require()
.
import ExNavigator from '@expo/react-native-navigator';
class Example extends React.Component {
render() {
return (
<ExNavigator
initialRoute={YourRouter.getHomeRoute()}
style={{ flex: 1 }}
sceneStyle={{ paddingTop: 64 }}
/>
);
}
}
The main difference between ExNavigator and Navigator is what the route objects look like. With ExNavigator, you define what each scene looks like, what its navigation bar's contents should be, and what to do when the scene gains or loses focus. A common pattern is to define a router where you create routes:
let YourRouter = {
getHomeRoute() {
return {
// Return a React component class for the scene. It receives a prop
// called `navigator` that you can use to push on more routes.
getSceneClass() {
return require('./HomeScene');
},
// When this scene receives focus, you can run some code. We're just
// proxying the `didfocus` event that Navigator emits, so refer to
// Navigator's source code for the semantics.
onDidFocus(event) {
console.log('Home Scene received focus.');
},
// Return a string to display in the title section of the navigation bar.
// This route's title is displayed next to the back button when you push
// a new route on top of this one.
getTitle() {
return 'Home';
},
};
},
getProfileRoute(profile) {
return {
// You can also render a scene yourself when you need more control over
// the props of the scene component
renderScene(navigator) {
let ProfileScene = require('./ProfileScene');
return <ProfileScene navigator={navigator} profile={profile} />;
},
// There are onWillBlur and onDidBlur events when the scene loses focus.
// These events occur when another scene will focus or did focus,
// respectively. The difference between "will" and "did" is the start and
// end of the scene transition.
onDidBlur(event) {
console.log(`Profile Scene for ${profile} lost focus.`);
},
// You can render arbitrary views for the title component. Note that you
// also need to implement getTitle if you want the title of this route to
// show up in the back button to it.
renderTitle() {
return (
<View style={{ flexDirection: 'row' }}>
<Image source={profile.photoUrl} style={styles.titlePhoto} />
<Text style={styles.titleName}>{profile.name}</Text>
</View>
);
},
getTitle() {
return profile.name;
},
// Render the view to display on the right side of the navigation bar. It
// is typically a button but doesn't have to be.
renderRightButton() {
return (
<Button onPress={() => { console.log('Tapped right button'); }}>
Log
</Button>
);
},
};
},
};
To navigate to a new scene, you use an API very similar to Navigator's. Create a route object—perhaps with the help of your router—and give it to the ExNavigator:
class HomeScene extends React.Component {
render() {
return (
<View style={{ justifyContent: 'center' }}>
<Button onPress={() => {
// Get a route object from the router
let profile = {
name: 'Alex',
photoUrl: 'https://images.example.com/alex.jpeg',
};
let route = YourRouter.getProfileRoute(profile);
// `navigator` is passed into your scene component when you have
// implemented getSceneClass in your route
this.props.navigator.push(route);
}}>
Navigate to a profile
</Button>
</View>
);
}
}
The default scene config, FloatFromRight
, has the ability to display a shadow just like it does natively on iOS. However, you need to define your own shadow. Add the following styles in the sceneStyle
property on your ExNavigator
component:
sceneStyle={{
overflow: 'visible',
shadowColor: '#000',
shadowOpacity: 0.5,
shadowRadius: 6
}}
You can use the ExNavigator routing framework using Actions to change the route instead of passing around a navigator. react-native-router-flux is built on top of ExNavigator.
FAQs
Route-centric navigation built on top of React Native's Navigator
The npm package @expo/react-native-navigator receives a total of 1 weekly downloads. As such, @expo/react-native-navigator popularity was classified as not popular.
We found that @expo/react-native-navigator demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 11 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
Security News
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
Security News
Research
A supply chain attack on Rspack's npm packages injected cryptomining malware, potentially impacting thousands of developers.
Research
Security News
Socket researchers discovered a malware campaign on npm delivering the Skuld infostealer via typosquatted packages, exposing sensitive data.