I am using on
<Text style={styles.sampleStyle}> Something </Text>
the following styles:
sampleStyle: { textDecorationLine: "underline", textDecorationStyle: "solid", textDecorationColor: "#000", }
However, they don't seem to be working. What am I doing wrong?
You didn't specify the style you want for your Text component. Try with :
<Text style={styles.sampleStyle} >Something </Text> var styles = StyleSheet.create({ sampleStyle: { textDecorationLine: "underline", textDecorationStyle: "solid", textDecorationColor: "#000" } });
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With