gpt4 book ai didi

react-native - 内联元素实现

转载 作者:行者123 更新时间:2023-12-03 10:06:33 25 4
gpt4 key购买 nike

我要创建Text组件并将它们连续显示,例如 span html中的元素。如果我这样做:

<View>
<Text> Start here, </Text> <Text> finish here </Text>
</View>

它们之间的线断了,看起来像:

Start here,
finish here



如何防止换行并将它们显示在同一行上?

最佳答案

只需设置正确 flexDirection .默认为 column .

<View style={{flexDirection: 'row'}}>
<Text> Start here, </Text> <Text> finish here </Text>
</View>

关于react-native - 内联元素实现,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34704882/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com