Pirogrammer
Pirogrammer

Reputation: 182

Horizontal line across a Text component

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: Horizontal line across a word from CSS

is there a way to do it?

Upvotes: 0

Views: 858

Answers (2)

Prinju Koshy Vaidyan
Prinju Koshy Vaidyan

Reputation: 485

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

Upvotes: 1

Wael Zoaiter
Wael Zoaiter

Reputation: 716

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

Upvotes: 3

Related Questions