blinking_text

Last updated:

0 purchases

blinking_text Image
blinking_text Images
Add to Cart

Description:

blinking text

blinking_text #
A simple plugin to create blinking text
How to use #
Properties:
It supports properties of Text widget's and includes 4 more properties for animation

beginColor - It overrides widget TextStyle's color.
endColor - The color the text will blink to. If there is no endColor defined, opacity 0 is used.
times - Number of times text blinks.
duration - Interval of blinking animation.

Blink text with opacity
BlinkText('Blink Animation'),
copied to clipboard
Blink text from original color to orange indefinitely
const BlinkText(
'Blink Animation',
style: TextStyle(fontSize: 24.0, color: Colors.redAccent),
endColor: Colors.orange,
),
copied to clipboard
Blink text from black to orange 10 times
const BlinkText(
'Blink Animation',
style: TextStyle(fontSize: 48.0, color: Colors.redAccent),
beginColor: Colors.black,
endColor: Colors.orange,
times: 10,
duration: Duration(seconds: 1)
),
copied to clipboard
Original Link: https://dragoonapps.com/project/blinking-text/

License:

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Customer Reviews

There are no reviews.