如何垂直拉伸列形式中的两个视图 - React Native Flex?

时间:2018-05-16 20:00:13

标签: react-native flexbox react-native-flexbox

我有这个视图,列中有两个视图:

    <View style={styles.container}>
        <View style={styles.content}>
            <View style={{backgroundColor: 'orange'}}>
                <Text>Test</Text>
            </View>
            <View style={{backgroundColor: 'yellow'}}>
                <Text>Test2</Text>
            </View>
        </View>
    </View>

这是我的样式:

container: {
    flexDirection: 'row',
    backgroundColor: 'white',
    justifyContent:'center',
    alignItems:'center',
    height: 80,
    margin: 8,
},
content: {
    flex:1,
    alignItems: 'stretch',
    flexDirection: 'column',
},

以上是代码的ScreenShot

如何才能使橙色和黄色视图垂直展开,而无需手动定义每个视图的高度?

内部文字应居中,但左对齐。

1 个答案:

答案 0 :(得分:1)

flex: 1添加到每个单元格以使其展开并添加justifyContent: 'center'以使文本垂直居中。像这样:

  <View style={styles.container}>
    <View style={styles.content}>
      <View style={{ backgroundColor: 'orange', flex: 1, justifyContent: 'center' }}>
        <Text>Test</Text>
      </View>
      <View style={{ backgroundColor: 'yellow', flex: 1, justifyContent: 'center' }}>
        <Text>Test2</Text>
      </View>
    </View>
  </View>