Animated-Text-Kit

🔔 A flutter package to create cool and beautiful text animations. [Flutter Favorite Package]

MIT License

Stars
1.7K
Committers
22

Bot releases are hidden (Show)

Animated-Text-Kit - Release 4.2.2 Latest Release

Published by aagarwal1012 over 2 years ago

What's Changed

New Contributors

Full Changelog: https://github.com/aagarwal1012/Animated-Text-Kit/compare/v4.2.0...v4.2.2

Animated-Text-Kit - Release 4.2.0

Published by aagarwal1012 over 3 years ago

  • Flicker Animated Text by @CoderInTheWoods.
  • TypewriterAnimatedText may now be customized to adjust the cursor.
  • Legacy Kit classes are now marked as deprecated
  • DefaultTextStyle may be used to set a common text style across AnimatedText instances
  • textStyle is no longer required for AnimatedText subclasses (except for ColorizeAnimatedText)
  • FadeAnimatedText may now be customized to adjust the fade-in and fade-out interval
  • BREAKING CHANGE: AnimatedText.completeText now has a BuildContext parameter
  • Migrated to nnbd(null-safety)
  • Added Flutter Favorite badge to readme.
Animated-Text-Kit - Release 3.1.0

Published by aagarwal1012 almost 4 years ago

Enhancements

  • Added rotateOut flag to RotateAnimatedText so that one may optionally disable the rotation-out animation.
  • Updated the example app to demonstrate RotateAnimatedText with rotateOut disabled.
Animated-Text-Kit - Release 3.0.2

Published by aagarwal1012 almost 4 years ago

  • Fixed major bug #168, introduced with version 3.0.0
  • Updated the example app to show a Tap Count
  • Optimized the dispose for AnimatedTextKit.
  • Added missing return type to onNext function signatures.
  • Optimized the initState for AnimatedTextKit.
Animated-Text-Kit - Release 3.0.0

Published by aagarwal1012 almost 4 years ago

v3.0.0

  • Refactored code to reduce duplication, improve consistency, and simplify making new animations. Created AnimatedText and AnimatedTextKit. PR #157
  • Removed the unused alignment property from all except RotateAnimatedTextKit. Resolves #153
  • Added a textDirection property to ColorizeAnimatedTextKit to support RTL text. Resolves #109
  • Added a loadUntil property to TextLiquidFill to optionally show a partial fill. Resolves #75
  • Optimized TextLiquidFill. PR #165
  • Optimized ColorizeAnimatedTextKit. PR #155
  • Updated the Dart SDK constraint to be 2.10+.
  • Regenerated the example platform code. PR #162
  • Migrated from Travis CI to GitHub Actions.
Animated-Text-Kit - Release 2.5.4

Published by aagarwal1012 almost 4 years ago

Documentation

Added missing dart documentation to the public classes and methods.

Animated-Text-Kit - Release 2.5.3

Published by aagarwal1012 almost 4 years ago

Bug Fixes and Enhancements

  • Updated the README to revert links to be pub.dev friendly.
  • Bug fix for ScaleAnimatedTextKit to check mounted before setState to avoid potential conflict with dispose. Resolves #105 -- PR #143
  • Minor bug fix to RotateAnimatedTextKit to properly handle alignment property, and introduced textDirection property #138
  • Increased test coverage #128
Animated-Text-Kit - Release 2.5.0

Published by aagarwal1012 almost 4 years ago

@awhitford is on fire, a ton of bug fixes and improvements from his side.

  • Increase test coverage #137 and #135.
  • Removed redundant _texts variables #133.
  • Added pedantic lint rules. #132.
  • Refactored code to move default logic from the State class to the StatefulWidget #131.
  • Revised _textKey to not be a global variable. Resolves #129 issue -- PR #130.
  • Other basic improvements #136 and #134.
Animated-Text-Kit - Release 2.4.0

Published by aagarwal1012 about 4 years ago

Issues Fixed

Animated-Text-Kit - Wavy Text

Published by aagarwal1012 about 4 years ago

New Animated Text

Issues Fixed

Code Review #81

  • Removed obsolete new keywords.
  • Added types to collection and function variables.
  • Added final and const keywords.
  • Replaced null guards with concise ?. and ?? operators.
  • Added missing null check on dispose for FadeAnimatedTextKit.
  • In fade.dart, renamed the _RotatingTextState class to _FadeTextState to be consistent with the overall pattern and avoid confusion with _RotatingTextState in rotate.dart.

Warning:

  • Removed onNextBeforePause from ColorizeAnimatedTextKit because it was not referenced.

Feature Enhancement

  • Add repeatForever option.

    repeatForever: true, //this will ignore [totalRepeatCount]
    
Animated-Text-Kit - Better Control & TextLiquidFill Animated Text

Published by aagarwal1012 almost 5 years ago

2.0.0

  • TextLiquidFill animated text added to the package🎉🎉

  • Breaking Changes:
    Different arguments are included in the classes and duration has been broken into speed and pause in some classes as per their needs.

    • duration - Change the duration from the animation time of the complete list to single element animation time.
    • speed - Time between the display of characters.
    • pause - Delay between the animation of texts.
    • totalRepeatCount - Sets the number of times animation should repeat
    • displayFullTextOnTap - If true, tapping the screen will stop current animated text, and display it fully.
    • stopPauseOnTap - If true, tapping during a pause will stop it and start the next text animation.
  • Better control over Animated Texts:
    Callbacks added:

    • onNext(int index, bool isLast) - This callback will be called before the next text animation, after the previous ones pause.
    • onNextBeforePause(int index, bool isLast) - This callback will be called before the next text animation, before the previous one's pause.
    • onFinished - This callback is called at the end when the parameter isRepeatingAnimation is set to false.
Animated-Text-Kit - Align Text

Published by aagarwal1012 over 5 years ago

Added alignment property to Stack and textAlign property to Text.

Animated-Text-Kit - ❤️ isRepeatingAnimation

Published by aagarwal1012 almost 6 years ago

  • Added attribute to check whether the animation should repeat or not.
  • Updated Readme.
  • Fixed flutter formatting issues.
Animated-Text-Kit - onTap callback

Published by aagarwal1012 about 6 years ago

Feature Enhancement

  • Added onTap callback for all AnimatedText widget.
  • Updated Readme.
Animated-Text-Kit - General Update

Published by aagarwal1012 about 6 years ago

Animated-Text-Kit - First Release

Published by aagarwal1012 about 6 years ago