diff --git a/releases/next/docs/navigatorios.html b/releases/next/docs/navigatorios.html index d40168b070c..4fd44e310d8 100644 --- a/releases/next/docs/navigatorios.html +++ b/releases/next/docs/navigatorios.html @@ -38,7 +38,11 @@ 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.

Props #

barTintColor string #

The default background color of the navigation bar

initialRoute {component: function, title: string, passProps: object, backButtonIcon: Image.propTypes.source, backButtonTitle: string, leftButtonIcon: Image.propTypes.source, leftButtonTitle: string, onLeftButtonPress: function, rightButtonIcon: Image.propTypes.source, rightButtonTitle: string, 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. "push" and all the other navigation -operations expect routes to be like this:

itemWrapperStyle View#style #

The default wrapper style for components in the navigator. +operations expect routes to be like this:

interactivePopGestureEnabled bool #

A Boolean value that indicates whether the interactive pop gesture is enabled. 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 page

navigationBarHidden bool #

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

shadowHidden bool #

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

tintColor string #

The default color used for buttons in the navigation bar

titleTextColor string #

The default text color of the navigation bar title

translucent bool #

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

Methods #

push(route: { component: Function; title: string;