如何在React Native Text元素中的文本中放置颜色?

时间:2018-05-29 18:47:11

标签: react-native

我想做类似的事情:

<Text>A SMS will be sent to to +447 . Use 9999 to simulate it continue</Text>

但是+447应该是不同的颜色。像这样:

enter image description here

有什么建议吗?

1 个答案:

答案 0 :(得分:2)

您可以嵌套不同样式的文本元素:

<Text style={styles.pink}>
  A SMS will be sent to to <Text style={styles.black}>+447</Text> . Use 9999 to simulate it continue
</Text>