Answers for "text decoration style react native"

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 "text decoration style react native"

Code answers related to "Javascript"

Browse Popular Code Answers by Language