flexdirection = row in child Просмотреть justifycontent любое свойство, не работающее в реакции native - PullRequest
0 голосов
/ 30 ноября 2018

Это мой код

import React, {Component} from 'react';
import {Platform, StyleSheet, Text, View} from 'react-native';


export default class Dashboard extends Component{
  render() {
    return (
      <View style={styles.container}>
        <View style={styles.welcome}>
            <Text>Hello mom</Text>
            <Text>Hello Rajat</Text>
        </View>
        <View style={styles.instructions}>
            <Text>Hello Jon</Text>
            <Text>Hello BOB</Text>
        </View>         
      </View>
    );
  }
}

const styles = StyleSheet.create({
  container: {
    flex: 1,
    justifyContent: 'center',
    alignItems: 'center',
    backgroundColor: '#F5FCFF',
  },
  welcome: {
    flex:1,
    flexDirection:'column',
    alignItems:'flex-start',
    justifyContent:'space-around',
  },
  instructions: {
    flex:2,
    flexDirection:'row',
    //alignItems:'flex-end',
    //marginRight: 50,
    justifyContent:'flex-start',
  },
});

Где ошибка, пожалуйста, помогите мне

enter image description here

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...