deepanshu katyal
deepanshu katyal

Reputation: 671

How to add line(strike) through on Text(Discount price cut line ) in react native?

enter image description hereenter image description here

How to add line on above the text as provided in the screenshot

Upvotes: 0

Views: 1602

Answers (1)

deepanshu katyal
deepanshu katyal

Reputation: 671

Solution:

You can use textDecorationLine with 'line-through' property like below

<Text style={{textDecorationLine: 'line-through', textDecorationStyle: 'solid'}}> Solid line </Text>

Upvotes: 1

Related Questions