aagarwal1012 / Animated-Text-Kit

🔔 A flutter package to create cool and beautiful text animations. [Flutter Favorite Package]
https://animated-text-kit.web.app
MIT License
1.66k stars 304 forks source link

ColorizeAnimatedText's animation is weird. #241

Open ZihYangLin opened 3 years ago

ZihYangLin commented 3 years ago

the color animation is weird. There has a short animation at the beginning when repeated.

dependencies: animated_text_kit: ^4.2.0

Here's a piece of code:

child: AnimatedTextKit(
  repeatForever: true,
  animatedTexts: [
    ColorizeAnimatedText(
      '市井小民',
      speed: Duration(milliseconds: 1000),
      textStyle: TextStyle(
        fontSize: 24.0,
      ),
      colors: [
        Colors.purple,
        Colors.blue,
        Colors.yellow,
        Colors.red,
      ],
    ),
  ],
)),

only repeat once

Please wait until repeated, about 10s.

Thanks for every tip!

namlhse02285 commented 3 years ago

Same problem although added "isRepeatingAnimation: false"

Scheideba commented 3 years ago

happening for me too