how to change color and fontSize on word in statement in react native?

Multi tool use


how to change color and fontSize on word in statement in react native?
how to change color and fontSize on word in statement in react native?
for example "hello world test"
hello and test is red but world is blue
2 Answers
2
<Text style={{color: 'red'}}>
hello
<Text style={{color: 'blue'}}>
word
</Text>
test
</Text>
You can set many styles to different <Text>
within another <Text>
component, like:
<Text>
<Text>
<Text style={styles.blueText}>
<Text style={styles.redText}>hello</Text>
world
<Text style={styles.redText}>test</Text>
</Text>
By clicking "Post Your Answer", you acknowledge that you have read our updated terms of service, privacy policy and cookie policy, and that your continued use of the website is subject to these policies.