react-native – React本机文本,如span

前端之家收集整理的这篇文章主要介绍了react-native – React本机文本,如span前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我试图在 Simulate display: inline in React Native中遵循解决方案,但它不起作用.

我想像HTML一样做同样的事情

第一行很短,所以似乎没有问题,但第二行内容太长,并且预计在进入下一行之前填满所有空间.

但我的输出看起来像……

<View style={styles.contentView}>
    <Text style={styles.username}>{s_username}</Text>
    <Text style={styles.content}>{s_content}</Text>
</View>

contentView: {
    paddingLeft: 10,flex: 1,flexDirection:'row',flexWrap:'wrap'
},username: {
    fontWeight: 'bold'
},content: {

},
Reacted native支持嵌套的Text组件,您必须使用它来获得所需的结果. EG你应该让第二个文本组件嵌套在你的第二个文本组件中,就像这样
<View style={styles.contentView}>
    <Text>
        <Text style={styles.username}
              onPress={() => {/*SOME FUNCTION*/} >
           {s_username}
        </Text>
        <Text style={styles.content}>{s_content}</Text>
    </Text
</View>
原文链接:https://www.f2er.com/react/300928.html

猜你在找的React相关文章