Skip to content

Commit

Permalink
Added spaceEvenly value to Layout with Flexbox (#196)
Browse files Browse the repository at this point in the history
  • Loading branch information
gusgard authored and charpeni committed Feb 12, 2018
1 parent 884dc07 commit 477a2be
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/flexbox.md
Original file line number Diff line number Diff line change
Expand Up @@ -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';
Expand Down

0 comments on commit 477a2be

Please sign in to comment.