Issue
just like its displayed in the picture
I just can't split it into three parts I've tried my CSS knowledge but am new to react native ,I will appreciate your assistance , it seems daunting and SO seems like a good place to seek answers for developers.
Solution
You can nest multiple Views to achieve this.
<View style={{flex:1, flexDirection: “row”}}>
<View style={{flex: 2}}>
{image1}
</View>
<View style={{flex: 1, flexDirection: “column”}}>
{image2}
{image3}
</View>
</View>
Answered By - Egge
0 comments:
Post a Comment
Note: Only a member of this blog may post a comment.