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

How to replay animation on click? #317

Open jaredsburrows opened 1 year ago

jaredsburrows commented 1 year ago
AnimatedTextKit(
  animatedTexts: [
    TypewriterAnimatedText(
      'My App',
      textStyle: TextStyle(
        fontSize:
            Theme.of(context).textTheme.headlineMedium?.fontSize,
        fontWeight: FontWeight.bold,
      ),
      speed: const Duration(milliseconds: 200),
      cursor: '|',
    ),
  ],
  totalRepeatCount: 1,
  displayFullTextOnTap: true,
  stopPauseOnTap: true,
)