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 question for bold. I self-answered this question below.
How do I make text bold, italic, or underline in React Native?
273.7k Views Asked by James Ko At
5
There are 5 best solutions below
0

use only
<Text style={styles.textStyle}>I'm Underline!</Text>
const styles = StyleSheet.create({
textStyle: {
textDecorationLine: 'underline'
}
})
Other decorations are :
- none
- underline
- line-through
- underline line-through
0

You can see all possible att in this page https://reactnative.dev/docs/text
for example ...
textDecorationLine: enum('none', 'underline', 'line-through', 'underline line-through')
1

Only one line solution
<Text style={{fontStyle: 'italic', fontWeight: 'bold', textDecorationLine: 'underline'}}>Bold, Italic & Underline Text</Text>
0

In this Example of React Native Underline Text, we will see how can you underline the Text using the Stylesheet property textDecorationLine.
<View style={styles.MainContainer}>
<Text style={styles.TextStyle}>Example of Underline Text</Text>
</View>
TextStyle: {
textAlign: 'center',
fontWeight: 'bold'
fontStyle: 'italic'
fontSize: 20,
textDecorationLine: 'underline',
//line-through is the trick
},
There are other decorations :
- none
- underline
- line-through
- underline line-through
Working demo on Snack: https://snack.expo.io/BJT2ss_y7