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

How to vertically stretch two Views that are in a column formation - React Native Flex?

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

    <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上面代码的样子。

如何让橙色和黄色的 View 在垂直方向上均匀展开,而不用手动定义它们的高度?

里面的文字应该居中,但是左对齐。

向每个单元格添加 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>