random_text_reveal 0.0.2 random_text_reveal: ^0.0.2 copied to clipboard
A text animation package with random text reveal effect where the text reveals itself letter by letter (used mostly in movies)
Random Text Reveal #
A Flutter package that helps you create animated Text widgets with Random Text Reveal Effect for all platforms.
Simple Usage #
You should pass in a text value to the RandomTextReveal widget. It will automatically animate by generating random characters & slowly reveal text one by one. There are a few customizable options like style, duration, randomString etc.
const RandomTextReveal(
text: 'Random Text Reveal',
duration: Duration(seconds: 2),
style: TextStyle(
fontSize: 36,
color: Colors.blue,
fontWeight: FontWeight.bold,
),
curve: Curves.easeIn,
)