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.64k stars 306 forks source link

TypewriterAnimatedText text not centered in screen #299

Open axgalache opened 1 year ago

axgalache commented 1 year ago

When I use TypewriterAnimatedText animation, I can not have the text horizontally centered to the screen.

Capture:

https://imgur.com/a/3kJoxyU

Should be something like this:

https://imgur.com/a/2cfx3eC

spilioio commented 1 year ago

Make sure to use the textAlign property from the AnimatedText object:

AnimatedTextKit(
   animatedTexts: [
      TypewriterAnimatedText(
         "Typewriter text yay !",
          textAlign: TextAlign.center),
   ],
)