// first way
<View style={{flexDirection: "row", justifyContent: "space-between"}}>
<Button>B1</Button> // align left
<Button>B2</Button> // align right
</View>
// second way
<View style={{flexDirection: "row"}}>
<Button>B1</Button> // align left
<Button style={{marginLeft: "auto"}}>B2</Button> // align right
</View>
2条答案
按热度按时间2g32fytz1#
经过一番挖掘,我发现有两种简单的方法可以实现这一点:
t5zmwmid2#
如果容器的
width
大于2个按钮,您将看到一个在左边,一个在右边doc