I have a todo list, each list item has a check box. When I check the box, an animated strike-through effect should show from left to right. How to do that?
How can we make an animated strike through on react native text?
1.4k Views Asked by Supriya Gorai At
2
There are 2 best solutions below
0

There is no way to achieve strikethough
text with animation but you can customize it with the way like it's doing here Text animation with CSS - strike through line
You can create custom horizontal ProgressBar
and animate it with absolute on Text
so It might look the same you want.
Unfortunately, you can't animate strike directly but I used some tricks to achieve the same effect.
You can check the demo here.