Releases: aagarwal1012/Animated-Text-Kit
Releases · aagarwal1012/Animated-Text-Kit
Release 4.2.2
What's Changed
- Fix position in wavy animation by @SirusCodes in #242
- setState text workaround solution added in README by @Mohitmadhav in #243
- docs: add Mohitmadhav as a contributor by @allcontributors in #244
- Added ',' after Animated child block by @sxmeer-ahmed in #261
New Contributors
- @Mohitmadhav made their first contribution in #243
- @sxmeer-ahmed made their first contribution in #261
Full Changelog: v4.2.0...v4.2.2
Release 4.2.0
- 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 acrossAnimatedText
instancestextStyle
is no longer required forAnimatedText
subclasses (except forColorizeAnimatedText
)FadeAnimatedText
may now be customized to adjust the fade-in and fade-out interval- BREAKING CHANGE:
AnimatedText.completeText
now has aBuildContext
parameter - Migrated to nnbd(null-safety)
- Added Flutter Favorite badge to readme.
Release 3.1.0
Enhancements
- Added
rotateOut
flag toRotateAnimatedText
so that one may optionally disable the rotation-out animation. - Updated the
example
app to demonstrateRotateAnimatedText
withrotateOut
disabled.
Release 3.0.2
- Fixed major bug #168, introduced with version 3.0.0
- Updated the
example
app to show a Tap Count - Optimized the
dispose
forAnimatedTextKit
. - Added missing return type to
onNext
function signatures. - Optimized the
initState
forAnimatedTextKit
.
Release 3.0.0
v3.0.0
- Refactored code to reduce duplication, improve consistency, and simplify making new animations. Created
AnimatedText
andAnimatedTextKit
. PR #157 - Removed the unused
alignment
property from all exceptRotateAnimatedTextKit
. Resolves #153 - Added a
textDirection
property toColorizeAnimatedTextKit
to support RTL text. Resolves #109 - Added a
loadUntil
property toTextLiquidFill
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.
Release 2.5.4
Documentation
Added missing dart documentation to the public classes and methods.
Release 2.5.3
Bug Fixes and Enhancements
- Updated the
README
to revert links to bepub.dev
friendly. - Bug fix for
ScaleAnimatedTextKit
to checkmounted
beforesetState
to avoid potential conflict withdispose
. Resolves #105 -- PR #143 - Minor bug fix to
RotateAnimatedTextKit
to properly handlealignment
property, and introducedtextDirection
property #138 - Increased test coverage #128
Release 2.5.0
@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.
Release 2.4.0
Wavy Text
New Animated Text
- Wavy Text by @SirusCodes.
Issues Fixed
Code Review #81
- Removed obsolete
new
keywords. - Added types to collection and function variables.
- Added
final
andconst
keywords. - Replaced
null
guards with concise?.
and??
operators. - Added missing null check on
dispose
forFadeAnimatedTextKit
. - In
fade.dart
, renamed the_RotatingTextState
class to_FadeTextState
to be consistent with the overall pattern and avoid confusion with_RotatingTextState
inrotate.dart
.
Warning:
- Removed
onNextBeforePause
fromColorizeAnimatedTextKit
because it was not referenced.
Feature Enhancement
-
Add
repeatForever
option.repeatForever: true, //this will ignore [totalRepeatCount]