Answers for "react native styling underline text"

1

react native text underline

textDecorationLine: 'underline'
Posted by: Guest on March-10-2021
0

text decoration react native

<Text style={styles.sampleStyle} >Something </Text>

var styles = StyleSheet.create({
  sampleStyle: {
    textDecorationLine: "underline",
    textDecorationStyle: "solid",
    textDecorationColor: "#000"
  }
});
Posted by: Guest on February-14-2021

Code answers related to "react native styling underline text"

Code answers related to "Javascript"

Browse Popular Code Answers by Language