React Native add bold or italics to single words in field

后端 未结 12 2587
攒了一身酷
攒了一身酷 2020-12-13 05:14

How do I make a single word in a Text field bold or italics? Kind of like this:

This is a sentence with one word in bold         


        
12条回答
  •  北海茫月
    2020-12-13 05:58

    You can also put a Text tag inside of another Text tag. The second text tag will inherit the styling of the first, but you maintain the ability to style it independently from its parent.

    Level: 
        Easy
    
    
    //in your stylesheet...
    
      bold: {
        fontSize: 25,
        fontWeight: "bold",
        color: "blue",
      },
      normal: {
      // will inherit size and color attributes
        fontWeight: "normal",
      }
    
    

提交回复
热议问题