我有这个视图,其中一列中有两个视图:
<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',
},
这是上面代码的截图。
我怎样才能让橙色和黄色的视图在垂直方向上均匀扩展,而不需要手动定义它们的高度?
里面的文本应该居中,但左对齐。