NavigatorIOS #

NavigatorIOS is a wrapper around UINavigationController, enabling you to implement a navigation stack. It works exactly the same as it would on a native app using UINavigationController, providing the same animations and behavior from UIKIt.

As the name implies, it is only available on iOS. Take a look at Navigator for a similar solution for your cross-platform needs, or check out react-native-navigation, a component that aims to provide native navigation on both iOS and Android.

To set up the navigator, provide the initialRoute prop with a route object. A route object is used to describe each scene that your app navigates to. initialRoute represents the first route in your navigator.

import React, { Component, PropTypes } from 'react'; import { NavigatorIOS, Text } from 'react-native'; export default class NavigatorIOSApp extends Component { render() { return ( <NavigatorIOS initialRoute={{ component: MyScene, title: 'My Initial Scene', }} style={{flex: 1}} /> ); } } class MyScene extends Component { static propTypes = { title: PropTypes.string.isRequired, navigator: PropTypes.object.isRequired, } _onForward = () => { this.props.navigator.push({ title: 'Scene ' + nextIndex, }); } render() { return ( <View> <Text>Current Scene: { this.props.title }</Text> <TouchableHighlight onPress={this._onForward}> <Text>Tap me to load the next scene</Text> </TouchableHighlight> </View> ) } }

In this code, the navigator renders the component specified in initialRoute, which in this case is MyScene. This component will receive a route prop and a navigator prop representing the navigator. The navigator's navigation bar will render the title for the current scene, "My Initial Scene".

You can optionally pass in a passProps property to your initialRoute. NavigatorIOS passes this in as props to the rendered component:

initialRoute={{ component: MyScene, title: 'My Initial Scene', passProps: { myProp: 'foo' } }}

You can then access the props passed in via {this.props.myProp}.

Handling Navigation #

To trigger navigation functionality such as pushing or popping a view, you have access to a navigator object. The object is passed in as a prop to any component that is rendered by NavigatorIOS. You can then call the relevant methods to perform the navigation action you need:

class MyView extends Component { _handleBackPress() { this.props.navigator.pop(); } _handleNextPress(nextRoute) { this.props.navigator.push(nextRoute); } render() { const nextRoute = { component: MyView, title: 'Bar That', passProps: { myProp: 'bar' } }; return( <TouchableHighlight onPress={() => this._handleNextPress(nextRoute)}> <Text style={{marginTop: 200, alignSelf: 'center'}}> See you on the other nav {this.props.myProp}! </Text> </TouchableHighlight> ); } }

You can also trigger navigator functionality from the NavigatorIOS component:

class NavvyIOS extends Component { _handleNavigationRequest() { this.refs.nav.push({ component: MyView, title: 'Genius', passProps: { myProp: 'genius' }, }); } render() { return ( <NavigatorIOS ref='nav' initialRoute={{ component: MyView, title: 'Foo This', passProps: { myProp: 'foo' }, rightButtonTitle: 'Add', onRightButtonPress: () => this._handleNavigationRequest(), }} style={{flex: 1}} /> ); } }

The code above adds a _handleNavigationRequest private method that is invoked from the NavigatorIOS component when the right navigation bar item is pressed. To get access to the navigator functionality, a reference to it is saved in the ref prop and later referenced to push a new scene into the navigation stack.

Navigation Bar Configuration #

Props passed to NavigatorIOS will set the default configuration for the navigation bar. Props passed as properties to a route object will set the configuration for that route's navigation bar, overriding any props passed to the NavigatorIOS component.

_handleNavigationRequest() { this.refs.nav.push({ //... passProps: { myProp: 'genius' }, barTintColor: '#996699', }); } render() { return ( <NavigatorIOS //... style={{flex: 1}} barTintColor='#ffffcc' /> ); }

In the example above the navigation bar color is changed when the new route is pushed.

Props #

barTintColor string #

The default background color of the navigation bar.

initialRoute {component: function, title: string, titleImage: Image.propTypes.source, passProps: object, backButtonIcon: Image.propTypes.source, backButtonTitle: string, leftButtonIcon: Image.propTypes.source, leftButtonTitle: string, leftButtonSystemIcon: Object.keys(SystemIcons), onLeftButtonPress: function, rightButtonIcon: Image.propTypes.source, rightButtonTitle: string, rightButtonSystemIcon: Object.keys(SystemIcons), onRightButtonPress: function, wrapperStyle: [object Object], navigationBarHidden: bool, shadowHidden: bool, tintColor: string, barTintColor: string, titleTextColor: string, translucent: bool} #

NavigatorIOS uses route objects to identify child views, their props, and navigation bar configuration. Navigation operations such as push operations expect routes to look like this the initialRoute.

interactivePopGestureEnabled bool #

Boolean value that indicates whether the interactive pop gesture is enabled. This is useful for enabling/disabling the back swipe navigation gesture.

If this prop is not provided, the default behavior is for the back swipe gesture to be enabled when the navigation bar is shown and disabled when the navigation bar is hidden. Once you've provided the interactivePopGestureEnabled prop, you can never restore the default behavior.

itemWrapperStyle View#style #

The default wrapper style for components in the navigator. A common use case is to set the backgroundColor for every scene.

navigationBarHidden bool #

Boolean value that indicates whether the navigation bar is hidden by default.

shadowHidden bool #

Boolean value that indicates whether to hide the 1px hairline shadow by default.

tintColor string #

The default color used for the buttons in the navigation bar.

titleTextColor string #

The default text color of the navigation bar title.

translucent bool #

Boolean value that indicates whether the navigation bar is translucent by default

Methods #

push(route) #

Navigate forward to a new route.

Parameters:
Name and TypeDescription
route

object

The new route to navigate to.

popN(n) #

Go back N scenes at once. When N=1, behavior matches pop().

Parameters:
Name and TypeDescription
n

number

The number of scenes to pop.

pop(0) #

Pop back to the previous scene.

replaceAtIndex(route, index) #

Replace a route in the navigation stack.

Parameters:
Name and TypeDescription
route

object

The new route that will replace the specified one.

index

number

The route into the stack that should be replaced. If it is negative, it counts from the back of the stack.

replace(route) #

Replace the route for the current scene and immediately load the view for the new route.

Parameters:
Name and TypeDescription
route

object

The new route to navigate to.

replacePrevious(route) #

Replace the route/view for the previous scene.

Parameters:
Name and TypeDescription
route

object

The new route to will replace the previous scene.

popToTop(0) #

Go back to the topmost item in the navigation stack.

popToRoute(route) #

Go back to the item for a particular route object.

Parameters:
Name and TypeDescription
route

object

The new route to navigate to.

replacePreviousAndPop(route) #

Replaces the previous route/view and transitions back to it.

Parameters:
Name and TypeDescription
route

object

The new route that replaces the previous scene.

resetTo(route) #

Replaces the top item and pop to it.

Parameters:
Name and TypeDescription
route

object

The new route that will replace the topmost item.

You can edit the content above on GitHub and send us a pull request!

Examples #

Edit on GitHub
'use strict'; const React = require('react'); const ReactNative = require('react-native'); const ViewExample = require('./ViewExample'); const createExamplePage = require('./createExamplePage'); const nativeImageSource = require('nativeImageSource'); const { AlertIOS, NavigatorIOS, ScrollView, StyleSheet, Text, TouchableHighlight, View, } = ReactNative; class EmptyPage extends React.Component { render() { return ( <View style={styles.emptyPage}> <Text style={styles.emptyPageText}> {this.props.text} </Text> </View> ); } } class NavigatorIOSExamplePage extends React.Component { render() { var recurseTitle = 'Recurse Navigation'; if (!this.props.depth || this.props.depth === 1) { recurseTitle += ' - more examples here'; } return ( <ScrollView style={styles.list}> <View style={styles.line}/> <View style={styles.group}> {this._renderRow(recurseTitle, () => { this.props.navigator.push({ title: NavigatorIOSExample.title, component: NavigatorIOSExamplePage, backButtonTitle: 'Custom Back', passProps: {depth: this.props.depth ? this.props.depth + 1 : 1}, }); })} {this._renderRow('Push View Example', () => { this.props.navigator.push({ title: 'Very Long Custom View Example Title', component: createExamplePage(null, ViewExample), }); })} {this._renderRow('Custom title image Example', () => { this.props.navigator.push({ title: 'Custom title image Example', titleImage: require('./relay.png'), component: createExamplePage(null, ViewExample), }); })} {this._renderRow('Custom Right Button', () => { this.props.navigator.push({ title: NavigatorIOSExample.title, component: EmptyPage, rightButtonTitle: 'Cancel', onRightButtonPress: () => this.props.navigator.pop(), passProps: { text: 'This page has a right button in the nav bar', } }); })} {this._renderRow('Custom Right System Button', () => { this.props.navigator.push({ title: NavigatorIOSExample.title, component: EmptyPage, rightButtonSystemIcon: 'bookmarks', onRightButtonPress: () => this.props.navigator.pop(), passProps: { text: 'This page has a right system button in the nav bar', } }); })} {this._renderRow('Custom Left & Right Icons', () => { this.props.navigator.push({ title: NavigatorIOSExample.title, component: EmptyPage, leftButtonTitle: 'Custom Left', onLeftButtonPress: () => this.props.navigator.pop(), rightButtonIcon: nativeImageSource({ ios: 'NavBarButtonPlus', width: 17, height: 17 }), onRightButtonPress: () => { AlertIOS.alert( 'Bar Button Action', 'Recognized a tap on the bar button icon', [ { text: 'OK', onPress: () => console.log('Tapped OK'), }, ] ); }, passProps: { text: 'This page has an icon for the right button in the nav bar', } }); })} {this._renderRow('Custom Left & Right System Icons', () => { this.props.navigator.push({ title: NavigatorIOSExample.title, component: EmptyPage, leftButtonSystemIcon: 'cancel', onLeftButtonPress: () => this.props.navigator.pop(), rightButtonSystemIcon: 'search', onRightButtonPress: () => { AlertIOS.alert( 'Bar Button Action', 'Recognized a tap on the bar button icon', [ { text: 'OK', onPress: () => console.log('Tapped OK'), }, ] ); }, passProps: { text: 'This page has an icon for the right button in the nav bar', } }); })} {this._renderRow('Pop', () => { this.props.navigator.pop(); })} {this._renderRow('Pop to top', () => { this.props.navigator.popToTop(); })} {this._renderReplace()} {this._renderReplacePrevious()} {this._renderReplacePreviousAndPop()} {this._renderRow('Exit NavigatorIOS Example', this.props.onExampleExit)} </View> <View style={styles.line}/> </ScrollView> ); } _renderReplace = () => { if (!this.props.depth) { // this is to avoid replacing the top of the stack return null; } return this._renderRow('Replace here', () => { var prevRoute = this.props.route; this.props.navigator.replace({ title: 'New Navigation', component: EmptyPage, rightButtonTitle: 'Undo', onRightButtonPress: () => this.props.navigator.replace(prevRoute), passProps: { text: 'The component is replaced, but there is currently no ' + 'way to change the right button or title of the current route', } }); }); }; _renderReplacePrevious = () => { if (!this.props.depth || this.props.depth < 2) { // this is to avoid replacing the top of the stack return null; } return this._renderRow('Replace previous', () => { this.props.navigator.replacePrevious({ title: 'Replaced', component: EmptyPage, passProps: { text: 'This is a replaced "previous" page', }, wrapperStyle: styles.customWrapperStyle, }); }); }; _renderReplacePreviousAndPop = () => { if (!this.props.depth || this.props.depth < 2) { // this is to avoid replacing the top of the stack return null; } return this._renderRow('Replace previous and pop', () => { this.props.navigator.replacePreviousAndPop({ title: 'Replaced and Popped', component: EmptyPage, passProps: { text: 'This is a replaced "previous" page', }, wrapperStyle: styles.customWrapperStyle, }); }); }; _renderRow = (title: string, onPress: Function) => { return ( <View> <TouchableHighlight onPress={onPress}> <View style={styles.row}> <Text style={styles.rowText}> {title} </Text> </View> </TouchableHighlight> <View style={styles.separator} /> </View> ); }; } class NavigatorIOSExample extends React.Component { static title = '<NavigatorIOS>'; static description = 'iOS navigation capabilities'; static external = true; render() { const {onExampleExit} = this.props; return ( <NavigatorIOS style={styles.container} initialRoute={{ title: NavigatorIOSExample.title, component: NavigatorIOSExamplePage, passProps: {onExampleExit}, }} tintColor="#008888" /> ); } } const styles = StyleSheet.create({ container: { flex: 1, }, customWrapperStyle: { backgroundColor: '#bbdddd', }, emptyPage: { flex: 1, paddingTop: 64, }, emptyPageText: { margin: 10, }, list: { backgroundColor: '#eeeeee', marginTop: 10, }, group: { backgroundColor: 'white', }, groupSpace: { height: 15, }, line: { backgroundColor: '#bbbbbb', height: StyleSheet.hairlineWidth, }, row: { backgroundColor: 'white', justifyContent: 'center', paddingHorizontal: 15, paddingVertical: 15, }, separator: { height: StyleSheet.hairlineWidth, backgroundColor: '#bbbbbb', marginLeft: 15, }, rowNote: { fontSize: 17, }, rowText: { fontSize: 17, fontWeight: '500', }, }); module.exports = NavigatorIOSExample;