下面代码的目的是在两列中的同一行上放置文本,例如 html 表格。此 Expo 代码适用于 Android,但左侧和右侧的文本未在 iPhone 上显示。
<Text style={styles.form.title}>Title</Text>
<View style={{ justifyContent: 'center', }}>
<Left style={{paddingRight:200}}>
<Text style={{fontSize:17}}>First row</Text>
<Text style={{fontSize:17}}>Second row</Text>
</Left>
<Right style={{paddingLeft:150, marginBottom:230}}>
<Text style={{fontSize:17}}>First row</Text>
<Text style={{fontSize:17}}>Second row</Text>
</Right>
</View>