|
@@ -5,7 +5,14 @@ class FlexDirectionBasics extends React.Component {
|
|
|
render() {
|
|
|
return (
|
|
|
|
|
|
- <View style={{ flex: 1, flexDirection: 'column' }}>
|
|
|
+ <View style={{
|
|
|
+ flex: 1,
|
|
|
+
|
|
|
+ flexDirection: 'column',
|
|
|
+
|
|
|
+
|
|
|
+ justifyContent: 'space-around',
|
|
|
+ }}>
|
|
|
<View style={{ height: 50, width: 50, backgroundColor: 'powderblue' }} />
|
|
|
<View style={{ height: 50, width: 50, backgroundColor: 'skyblue' }} />
|
|
|
<View style={{ height: 50, width: 50, backgroundColor: 'steelblue' }} />
|