loading_animations 2.0.0 copy "loading_animations: ^2.0.0" to clipboard
loading_animations: ^2.0.0 copied to clipboard

outdated

A Flutter package with a selection of simple yet very customizable set of loading animations.

[2.0.0] - Renaming convention #

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 a BoxShape.rectangle as a shape parameter: 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.dart in order to make the examples smaller and more readable.

[1.0.1] - Updating package details #

Fix: #

  • Fixing version on pubspec.yaml
  • Added full path to example images

[1.0.0] - First release. #

Additions: #

First version released with 4 animations:

  • FlipCircle
  • RotatingSquare
  • FlipBox
  • BouncingGrid
264
likes
0
pub points
95%
popularity

Publisher

unverified uploader

A Flutter package with a selection of simple yet very customizable set of loading animations.

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

flutter

More

Packages that depend on loading_animations