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

Missing , (Comma) in Documentation Code Example #252

Closed viralvaghela closed 3 years ago

viralvaghela commented 3 years ago

Inside documentation code of Rotate and Typer there is missing , (comma) before the onTap() method.

return SizedBox(
  width: 250.0,
  child: DefaultTextStyle(
    style: const TextStyle(
      fontSize: 30.0,
      fontFamily: 'Bobbers',
    ),
    child: AnimatedTextKit(
      animatedTexts: [
        TyperAnimatedText('It is not enough to do your best,'),
        TyperAnimatedText('you must know what to do,'),
        TyperAnimatedText('and then do your best'),
        TyperAnimatedText('- W.Edwards Deming'),
      ]
      onTap: () {
        print("Tap Event");
      },
    ),
  ),
);

I would like to send PR and fix this small issue!

SirusCodes commented 3 years ago

How this will add value to the project? Anyone who I taking code from readme can update it on their side. I don't think there is a need to open a PR for just this thing. Thanks for raising this issue we can add this in the next update.

awhitford commented 3 years ago

261 resolved this.