diff --git a/releases/next/docs/layout-props.html b/releases/next/docs/layout-props.html index c92bec2f703..7ce5c84980d 100644 --- a/releases/next/docs/layout-props.html +++ b/releases/next/docs/layout-props.html @@ -6,8 +6,7 @@ ]) #

alignItems aligns children in the cross direction. For example, if children are flowing vertically, alignItems controls how they align horizontally. - It works like align-items in CSS, except the default value - is stretch instead of flex-start. + It works like align-items in CSS (default: stretch). See https://developer.mozilla.org/en-US/docs/Web/CSS/align-items for more details.

alignSelf ReactPropTypes.oneOf([ 'auto', @@ -17,7 +16,7 @@ 'stretch' ]) #

alignSelf controls how a child aligns in the cross direction, overriding the alignItems of the parent. It works like align-self - in CSS. + in CSS (default: auto). See https://developer.mozilla.org/en-US/docs/Web/CSS/align-self for more details.

borderBottomWidth ReactPropTypes.number #

borderBottomWidth works like border-bottom-width in CSS. See https://developer.mozilla.org/en-US/docs/Web/CSS/border-bottom-width @@ -56,7 +55,7 @@ for more details.

#

flexWrap controls whether children can wrap around after they hit the end of a flex container. - It works like flex-wrap in CSS. + It works like flex-wrap in CSS (default: nowrap). See https://developer.mozilla.org/en-US/docs/Web/CSS/flex-wrap for more details.

height ReactPropTypes.number #

height sets the height of this component.

It works similarly to height in CSS, but in React Native you must use logical pixel units, rather than percents, ems, or any of that. @@ -69,7 +68,7 @@ for more details.

#

justifyContent aligns children in the main direction. For example, if children are flowing vertically, justifyContent controls how they align vertically. - It works like justify-content in CSS. + It works like justify-content in CSS (default: flex-start). See https://developer.mozilla.org/en-US/docs/Web/CSS/justify-content for more details.

left ReactPropTypes.number #

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

It works similarly to left in CSS, but in React Native you must