From 2dab5a3b00e83e5532b0fbfdfb0c5e34936d9aa6 Mon Sep 17 00:00:00 2001 From: Website Deployment Script Date: Fri, 7 Oct 2016 05:19:57 +0000 Subject: [PATCH] Updated docs for next --- releases/next/docs/layout-props.html | 2 +- releases/next/docs/navigator.html | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/releases/next/docs/layout-props.html b/releases/next/docs/layout-props.html index 1a689b40eee..0eb31f0648b 100644 --- a/releases/next/docs/layout-props.html +++ b/releases/next/docs/layout-props.html @@ -31,7 +31,7 @@ See http for more details.

bottom ReactPropTypes.number #

bottom is the number of logical pixels to offset the bottom edge of this component.

It works similarly to bottom in CSS, but in React Native you must use logical pixel units, rather than percents, ems, or any of that.

See https://developer.mozilla.org/en-US/docs/Web/CSS/bottom - for more details of how top affects layout.

flex ReactPropTypes.number #

In React Native flex does not work the same way that it does in CSS. + for more details of how bottom affects layout.

flex ReactPropTypes.number #

In React Native flex does not work the same way that it does in CSS. flex is a number rather than a string, and it works according to the css-layout library at https://github.com/facebook/css-layout.

When flex is a positive number, it makes the component flexible diff --git a/releases/next/docs/navigator.html b/releases/next/docs/navigator.html index 7385b818e48..eaa79371717 100644 --- a/releases/next/docs/navigator.html +++ b/releases/next/docs/navigator.html @@ -105,7 +105,7 @@ available s gestures. Will be invoked with route and routeStack parameters, where route corresponds to the current scene being rendered by the Navigator and routeStack is the set of currently mounted routes -that the navigator could transition to.

The function should return a scene configuration object.

Available scene configutation options are:

initialRoute object #

The initial route for navigation. A route is an object that the navigator +that the navigator could transition to.

The function should return a scene configuration object.

(route, routeStack) => Navigator.SceneConfigs.FloatFromRight

Available scene configuration options are:

  • Navigator.SceneConfigs.PushFromRight (default)
  • Navigator.SceneConfigs.FloatFromRight
  • Navigator.SceneConfigs.FloatFromLeft
  • Navigator.SceneConfigs.FloatFromBottom
  • Navigator.SceneConfigs.FloatFromBottomAndroid
  • Navigator.SceneConfigs.FadeAndroid
  • Navigator.SceneConfigs.HorizontalSwipeJump
  • Navigator.SceneConfigs.HorizontalSwipeJumpFromRight
  • Navigator.SceneConfigs.VerticalUpSwipeJump
  • Navigator.SceneConfigs.VerticalDownSwipeJump

initialRoute object #

The initial route for navigation. A route is an object that the navigator will use to identify each scene it renders.

If both initialRoute and initialRouteStack props are passed to Navigator, then initialRoute must be in a route in initialRouteStack. If initialRouteStack is passed as a prop but