Can someone please instruct me how to create a blinking text with a fadeIn AND fadeOut animation?
Could not understand from the docs how to implement that.
Thanks for creating this package!
You'll just need one component with a fadeIn animation and an alternate direction that runs on an infinite loop (or as many times as you want). The below code should work:
<Animatable.Text animation="fadeIn" iterationCount={"infinite"} direction="alternate">
Hello World!
</Animatable.Text>
I've been experimenting with this issue and improved a bit @JonoH solution:
<Animatable.Text animation="fadeIn" iterationCount={"infinite"} direction="alternate" delay={2000}>
<Text>My Text</Text>
</Animatable.Text>
Most helpful comment
You'll just need one component with a fadeIn animation and an alternate direction that runs on an infinite loop (or as many times as you want). The below code should work: