loading_animations
A Flutter package with a selection of simple yet very customizable set of loading animations.
2.2.0
8.2K downloads/mo
#3181 most downloaded on pub.dev
cytryn/loading-animations
What this package is like to depend on
Last release 5 years ago
no release in 18 months
Release timing varies
gaps range from 2 months to 1.3 years
Nearly every release is documented
notes for 5 of 5 stable releases
Nothing withdrawn
no release was ever pulled
7 years old
5 releases · first in 2019
0 releases in the last 12 months
see the full history below
Release timeline
5 releases · Sep 2019 to Mar 2021Releases
latest 5-
2.2.009 Mar 2021 -
2.1.004 Nov 2019Release notes
Open source →Animations
Added 4 more animations:
- Bouncing Line
- LoadingBouncingLine.circle()
- LoadingBouncingLine.square()
- Bumping Line
- LoadingBumpingLine.circle()
- LoadingBumpingLine.square()
- Fading Line
- LoadingFadingLine.circle()
- LoadingFadingLine.square()
- Jumping Line
- LoadingJumpingLine.circle()
- LoadingJumpingLine.circle()
Example project
Added all the new animations to the example project.
- Bouncing Line
-
2.0.015 Sep 2019Release notes
Open source →Breaking changes:
Naming convention
Since we can have different shapes for the same animation in many case, I decided to change how we call the animations.
For example, the
LoadingFlipCircle()could be called passing aBoxShape.rectangleas ashapeparameter:LoadingFlipCircle(shape: BoxShape.rectangle).But since it makes more sense to focus on the animation itself, the shape is now embedded on a named constructor.
Before v2.0.0:
- circle -
LoadingFlipCircle() - square -
LoadingFlipCircle(shape: BoxShape.rectangle)
After v2.0.0:
- circle -
LoadingFlipping.circle() - square -
LoadingFlipping.square()
List of animation changes:
LoadingFlipCircle()->LoadingFlipping.circle()or.square()LoadingRotatingSquare()->LoadingRotating.square()LoadingFlipBox()->LoadingDoubleFlipping.circle()or.square()LoadingBouncingGrid()->LoadingBouncingGrid.circle()or.square()
New animation!
Added LoadingFilling.square() new animation. Please refer to the example project for more details.
Example project
Files got separated from
main.dartin order to make the examples smaller and more readable. - circle -
-
1.0.109 Sep 2019 -
1.0.009 Sep 2019Release notes
Open source →Additions:
First version released with 4 animations:
- FlipCircle
- RotatingSquare
- FlipBox
- BouncingGrid