text Decoration Line Color react native code example
Example: text decoration react native
<Text style={styles.sampleStyle} >Something </Text>
var styles = StyleSheet.create({
sampleStyle: {
textDecorationLine: "underline",
textDecorationStyle: "solid",
textDecorationColor: "#000"
}
});