【发布时间】:2021-08-05 19:14:34
【问题描述】:
是否可以有如下布局(不诉诸绝对定位)?
|...........centreElement.......RightElement|
好像 justifyContent 是 'space-between' 但没有第一个元素。我也想过 'justifyContent: 'centre'' 然后在 RightElement 上尝试 'justifySelf: 'flex-end' 但这个属性不存在。
<View styles={styles.container}>
<Text>centreElement</Text>
<Text>RightElement</Text>
</View>
container: {
flexDirection: 'row',
justifyContent: 'center'
}
【问题讨论】:
标签: react-native flexbox