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 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.
In React Native flex does not work the same way that it does in CSS.
+ for more details of how bottom affects layout.
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:
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.
Available scene configuration options are:
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