Reputation: 671
How to add line on above the text as provided in the screenshot
Upvotes: 0
Views: 1602
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