v1.0.4
blinking_text
A simple plugin to creating a blinking text. It allows to adjust duration of a blink and number of times text blinks before stopping.
31Likes 9.4K30-day downloads140Pub points
AndroidiOSWebmacOSWindowsLinux
A simple plugin for create blinking text widget
{"sdk":"flutter"}{"sdk":"flutter"}English project snapshot. Visit GitHub for the latest content.
A simple plugin to create blinking text
Properties: It supports properties of Text widget's and includes 4 more properties for animation
Blink text with opacity
BlinkText('Blink Animation'),
Blink text from original color to orange indefinitely
BlinkText(
'Blink Animation',
style: TextStyle(fontSize: 24.0, color: Colors.redAccent),
endColor: Colors.orange,
),
Blink text from black to orange 10 times
BlinkText(
'Blink Animation',
style: TextStyle(fontSize: 48.0, color: Colors.redAccent),
beginColor: Colors.black,
endColor: Colors.orange,
times: 10,
duration: Duration(seconds: 1)
),
Original Link: https://tleapps.com/blinking_text/