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

Keycloak server returning user_not_found error when user is already imported with LDAP

PHP parse/syntax errors; and how to solve them?

415 Unsupported Media Type while sending json file over REST Template