Animated-Text-Kit
Animated-Text-Kit copied to clipboard
Fade animation speed
how to slow down fading of text.
how to slow down fading of text. for FadeAnimatedText using duration property:
FadeAnimatedText( 'Some Text', duration: Duration(milliseconds: 500), ),for TyperAnimatedText using speed property:TyperAnimatedText( 'Some Text', textStyle: GoogleFonts.lobster( fontSize: 20, color: Colors.grey.shade800, ), speed: Duration(milliseconds: 160), ),and etc..(check the property for each animation type)