diff --git a/docs/layout-props.md b/docs/layout-props.md index df977e6440b..ee71f879dcb 100644 --- a/docs/layout-props.md +++ b/docs/layout-props.md @@ -307,9 +307,9 @@ It works similarly to `height` in CSS, but in React Native you must use points o `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 (default: flex-start). See https://developer.mozilla.org/en-US/docs/Web/CSS/justify-content for more details. -| Type | Required | -| ------------------------------------------------------------------------- | -------- | -| enum('flex-start', 'flex-end', 'center', 'space-between', 'space-around') | No | +| Type | Required | +| ----------------------------------------------------------------------------------------- | -------- | +| enum('flex-start', 'flex-end', 'center', 'space-between', 'space-around', 'space-evenly') | No | --- diff --git a/website/versioned_docs/version-0.52-RC/layout-props.md b/website/versioned_docs/version-0.52-RC/layout-props.md index eb45c584c9c..980d283cc24 100644 --- a/website/versioned_docs/version-0.52-RC/layout-props.md +++ b/website/versioned_docs/version-0.52-RC/layout-props.md @@ -308,9 +308,9 @@ It works similarly to `height` in CSS, but in React Native you must use points o `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 (default: flex-start). See https://developer.mozilla.org/en-US/docs/Web/CSS/justify-content for more details. -| Type | Required | -| ------------------------------------------------------------------------- | -------- | -| enum('flex-start', 'flex-end', 'center', 'space-between', 'space-around') | No | +| Type | Required | +| ----------------------------------------------------------------------------------------- | -------- | +| enum('flex-start', 'flex-end', 'center', 'space-between', 'space-around', 'space-evenly') | No | ---