How do I make text bold, italic, or underline in React Native?

前端 未结 4 851
囚心锁ツ
囚心锁ツ 2021-02-01 00:44

Surprisingly there isn\'t one question that groups these all together yet on Stack Overflow; there hasn\'t been an answer on SO for italics or underline, in fact, only this ques

4条回答
  •  轮回少年
    2021-02-01 00:48

    I'm bold!
    I'm italic!
    I'm underlined!
    
    const styles = StyleSheet.create({
        bold: {fontWeight: 'bold'},
        italic: {fontStyle: 'italic'},
        underline: {textDecorationLine: 'underline'}
    })
    

    Working demo on Snack: https://snack.expo.io/BJT2ss_y7

提交回复
热议问题