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.65k stars 305 forks source link

ColorizeAnimatedText() stumbles on the first letter #266

Open mrsrmn opened 3 years ago

mrsrmn commented 3 years ago

Describe the bug In the Colorize animation, the animation stumbles on the first letter, and only then goes through the whole word. I checked it on different simulators and on a real Android device, it is displayed the same everywhere.

To Reproduce Steps to reproduce the behavior:

  1. Use ColorizeAnimatedText() anywhere. It gives the same behavior all the time.

Expected behavior Just like how it is in https://pub.dev/packages/animated_text_kit#colorize

Screenshots enter image description here

Flutter:

Dart:

Additional context My code:

Padding(
                  padding: EdgeInsets.only(top: 10),
                  child: AnimatedTextKit(
                    animatedTexts: [
                      ColorizeAnimatedText(
                        "Test Text",
                        colors: colorizeColors,
                        textStyle: GoogleFonts.inconsolata(fontSize: 27),
                      ),
                    ],
                    pause: Duration(milliseconds: 0),
                    isRepeatingAnimation: true,
                    repeatForever: true,
                  )
                ),
mrsrmn commented 2 years ago

Hello? @aagarwal1012

namlhse02285 commented 2 years ago

Same as #241