[fix] StyleSheet accepts 'space-evenly' value for 'justifyContent'

This commit is contained in:
Nicolas Gallagher
2018-02-11 10:38:16 -08:00
parent 399f465e59
commit 7265736545
@@ -41,7 +41,14 @@ const LayoutPropTypes = {
flexShrink: number,
flexWrap: oneOf(['nowrap', 'wrap', 'wrap-reverse']),
height: numberOrString,
justifyContent: oneOf(['center', 'flex-end', 'flex-start', 'space-around', 'space-between']),
justifyContent: oneOf([
'center',
'flex-end',
'flex-start',
'space-around',
'space-between',
'space-evenly'
]),
left: numberOrString,
margin: numberOrString,
marginBottom: numberOrString,