From 5e058407e6d0175a305073017081affa5f6f2f85 Mon Sep 17 00:00:00 2001 From: Ryan Turner Date: Sun, 7 Jan 2018 21:47:47 -0600 Subject: [PATCH 1/2] Added `spaceEvenly` value to `justifyContent` --- docs/layout-props.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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 | --- From 07cd92f912fecafc847a028049e4f294cf9ac7d7 Mon Sep 17 00:00:00 2001 From: Ryan Turner Date: Tue, 9 Jan 2018 23:12:19 -0600 Subject: [PATCH 2/2] Added value to in the versioned docs --- website/versioned_docs/version-0.52-RC/layout-props.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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 | ---