如何在react native中将身体分成三部分[已关闭]

mlmc2os5  于 6个月前  发布在  React
关注(0)|答案(1)|浏览(70)

已关闭。此问题需要details or clarity。目前不接受回答。
**要改进此问题吗?**通过editing this post添加详细信息并阐明问题。

8天前关闭。
Improve this question
just like its displayed in the picture
我只是不能把它分成三个部分,我已经尝试了我的CSS知识,但我是新的React Native,我会感谢你的帮助,它似乎令人生畏,所以似乎是一个好地方寻求答案的开发人员。

qnzebej0

qnzebej01#

您可以嵌套多个视图来实现这一点。

<View style={{flex:1, flexDirection: “row”}}>
  <View style={{flex: 2}}>
    {image1}
  </View>
  <View style={{flex: 1, flexDirection: “column”}}>
    {image2}
    {image3}
  </View>
</View>

字符串

相关问题