Skip to content

Commit

Permalink
Added spaceEvenly value to justifyContent (#120)
Browse files Browse the repository at this point in the history
* Added `spaceEvenly` value to `justifyContent`

* Added  value to  in the versioned docs
  • Loading branch information
turnrye authored and hramos committed Jan 11, 2018
1 parent eb8ac58 commit 95520ab
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions docs/layout-props.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 |

---

Expand Down
6 changes: 3 additions & 3 deletions website/versioned_docs/version-0.52-RC/layout-props.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 |

---

Expand Down

0 comments on commit 95520ab

Please sign in to comment.