Reputation: 6796
I'd like to do something like:
<Text>A SMS will be sent to to +447 . Use 9999 to simulate it continue</Text>
But the +447 supposed to be in a different color. Something like this:
Any suggestions ?
Upvotes: 0
Views: 19
Reputation: 8936
You can nest text elements with different styles:
<Text style={styles.pink}>
A SMS will be sent to to <Text style={styles.black}>+447</Text> . Use 9999 to simulate it continue
</Text>
Upvotes: 2