NavigatorIOS#titleTextColor

titleTextColor string The default text color of the navigation bar title

NavigatorIOS#translucent

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

NavigatorIOS#tintColor

tintColor string The default color used for buttons in the navigation bar

NavigatorIOS#shadowHidden

shadowHidden bool A Boolean value that indicates whether to hide the 1px hairline shadow by default

NavigatorIOS#resetTo()

resetTo(route: { component: Function; title: string; passProps?: Object; backButtonTitle?: string; backButtonIcon?: Object; leftButtonTitle?: string; leftButtonIcon?: Object; onLeftButtonPress?: Function; rightButtonTitle?: string; rightButtonIcon?: Object; onRightButtonPress?: Function; wrapperStyle?: any; }) Replaces the top item and popToTop

NavigatorIOS#replacePreviousAndPop()

replacePreviousAndPop(route: { component: Function; title: string; passProps?: Object; backButtonTitle?: string; backButtonIcon?: Object; leftButtonTitle?: string; leftButtonIcon?: Object; onLeftButtonPress?: Function; rightButtonTitle?: string; rightButtonIcon?: Object; onRightButtonPress?: Function; wrapperStyle?: any; }) Replaces the previous route/view and transitions back to it.

NavigatorIOS#replace()

replace(route: { component: Function; title: string; passProps?: Object; backButtonTitle?: string; backButtonIcon?: Object; leftButtonTitle?: string; leftButtonIcon?: Object; onLeftButtonPress?: Function; rightButtonTitle?: string; rightButtonIcon?: Object; onRightButtonPress?: Function; wrapperStyle?: any; }) Replace the route for the current page and immediately load the view for the new route.

NavigatorIOS#push()

push(route: { component: Function; title: string; passProps?: Object; backButtonTitle?: string; backButtonIcon?: Object; leftButtonTitle?: string; leftButtonIcon?: Object; onLeftButtonPress?: Function; rightButtonTitle?: string; rightButtonIcon?: Object; onRightButtonPress?: Function; wrapperStyle?: any; }) Navigate forward to a new route

NavigatorIOS#replaceAtIndex()

replaceAtIndex(route: { component: Function; title: string; passProps?: Object; backButtonTitle?: string; backButtonIcon?: Object; leftButtonTitle?: string; leftButtonIcon?: Object; onLeftButtonPress?: Function; rightButtonTitle?: string; rightButtonIcon?: Object; onRightButtonPress?: Function; wrapperStyle?: any; }, index: number) Replace a route in the navigation stack. index specifies the route in the stack that should be replaced. If it's negative, it counts from the back.

NavigatorIOS#replacePrevious()

replacePrevious(route: { component: Function; title: string; passProps?: Object; backButtonTitle?: string; backButtonIcon?: Object; leftButtonTitle?: string; leftButtonIcon?: Object; onLeftButtonPress?: Function; rightButtonTitle?: string; rightButtonIcon?: Object; onRightButtonPress?: Function; wrapperStyle?: any; }) Replace the route/view for the previous page.