From 477a2bef07aecb3eea42a749cbdb3508e6333599 Mon Sep 17 00:00:00 2001 From: Gustavo Gard Date: Mon, 12 Feb 2018 14:17:48 -0300 Subject: [PATCH] Added `spaceEvenly` value to `Layout with Flexbox` (#196) 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 f089ddffcab90e..e6bfdd2b00ed48 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';