From 68468a3090accd5815d23a69bc15a7bf3f1af60e Mon Sep 17 00:00:00 2001 From: Gustavo Gard Date: Sat, 10 Feb 2018 13:18:56 -0300 Subject: [PATCH] Added `spaceEvenly` value to `Layout with Flexbox` Related https://github.com/facebook/react-native-website/pull/120 --- docs/flexbox.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/flexbox.md b/docs/flexbox.md index f089ddffcab..e6bfdd2b00e 100644 --- a/docs/flexbox.md +++ b/docs/flexbox.md @@ -36,7 +36,7 @@ AppRegistry.registerComponent('AwesomeProject', () => FlexDirectionBasics); #### Justify Content -Adding `justifyContent` to a component's style determines the **distribution** of children along the **primary axis**. Should children be distributed at the start, the center, the end, or spaced evenly? Available options are `flex-start`, `center`, `flex-end`, `space-around`, and `space-between`. +Adding `justifyContent` to a component's style determines the **distribution** of children along the **primary axis**. Should children be distributed at the start, the center, the end, or spaced evenly? Available options are `flex-start`, `center`, `flex-end`, `space-around`, `space-between` and `space-evenly`. ```ReactNativeWebPlayer import React, { Component } from 'react';