Styling individual text components

PHOTO EMBED

Wed Mar 16 2022 11:02:04 GMT+0000 (Coordinated Universal Time)

Saved by @markmarleydev

<Text> this text is black <Text style={styles.redText}> this text is red </Text> </Text>
  
  redText: {
    color: "red"
  }
<Text numberOfLines={1} ellipsizeMode="tail">
  This text will never wrap into a new line, instead it will be cut off like this if it is too lon...
</Text>
content_copyCOPY