Reputation: 182
I'm trying to make a horizontal line go across a Text component but I didn't figure out how to do it.
I'm trying to recreate this in react native:
is there a way to do it?
Upvotes: 0
Views: 858
Reputation: 485
<Text style={{textDecorationLine: 'line-through', textDecorationStyle: 'solid'}}> Test <Text />
Upvotes: 1
Reputation: 716
<Text
style={{
textDecorationLine: 'line-through',
textDecorationStyle: 'solid',
}}
>
line-through
</Text>
Upvotes: 3