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

The name of the pictureThe name of the pictureThe name of the pictureClash Royale CLAN TAG#URR8PPP


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.

Popular posts from this blog

Poland

Jenkinsfile syntax highlighting in Java project using Intellij Idea

Slightly complicated web text to variable parsing