Hey je veux ajouter Strike Through dans le montant de 10 $ pour montrer le montant coupé. Veuillez vérifier ci-dessous:
<View style={styles.row}>
<View style={styles.inputWrapstotal}>
<Text style={styles.labelcolor}>16.7% Off</Text>
</View>
<View style={styles.inputWrapstotal}>
<Text style={styles.labelamount}>Rs $10</Text>
<Text style={styles.labelamountchange}> 12 </Text>
</View>
</View>
S'il vous plaît ajouter css afin que je puisse aligner dans une ligne de texte, Merci d'avance.
Avec :
<Text style={{textDecorationLine: 'line-through', textDecorationStyle: 'solid'}}>
Solid line-through
</Text>
<Text style={{ textDecorationLine: 'line-through' }}>Strike through text</Text>
Vous pouvez trouver plus d'options de style de texte dans la documentation officielle ici
Essaye ça :
<Text style={{ textDecorationLine: 'line-through' }}>$12</Text>
Cela passera par le texte complet.