Flutter Spinkit Versions Save

✨ A collection of loading indicators animated with flutter. Heavily Inspired by http://tobiasahlin.com/spinkit.

v5.2.1

4 weeks ago

What's Changed

New Contributors

Full Changelog: https://github.com/jogboms/flutter_spinkit/compare/v5.2.0...v5.2.1

v5.2.0

11 months ago

What's Changed

New Contributors

Full Changelog: https://github.com/jogboms/flutter_spinkit/compare/v5.1.0...v5.2.0

v5.1.0

2 years ago

Much needed improvements

  • Renamed SpinKitPouringHourglass -> SpinKitPouringHourGlass for correctness
  • Fix SpinKitFoldingCube animation
  • Fix disposing of non-local animation controllers
  • Introduced strokeWidth to pouring glass animation

New Kits

  • Introduced SpinKitPouringHourGlassRefined
  • Introduced SpinKitSpinningLines
  • Introduced SpinKitPianoWave
  • Introduced SpinKitDancingSquare
  • Introduced SpinKitThreeInOut

Kudos to

v5.0.0

3 years ago
  • Migrate to null safety

v4.1.2

4 years ago
  • Introduced new itemCount property to SpinKitWave. Pr #71 by @payam-zahedi
  • Fixed broken calculations that made certain animations behave weirdly

v4.1.1

4 years ago
  • Utilize native flutter auto-reverse feature for AnimationController

v4.1.0

4 years ago
  • Introduces a new SpinKit [SpinKitSquareCircle]
  • Introduces const SpinKits
  • Improve code quality across all spinners

Before

final spinkit = SpinKitSquareCircle(color: Colors.white, size: 50.0);

Now, all SpinKits can be initialized as consts

const spinkit = SpinKitSquareCircle(color: Colors.white, size: 50.0);

Awesome #61 PR by @Abhishek0706

v4.0.0

4 years ago

This release introduces injectable AnimationController to allow for fine-grain control from anywhere. Enjoy!

v3.1.0

5 years ago
  • fix: state disposed before ticker #46
  • feat: duration parameter. #43

v3.0.0

5 years ago

Before

SpinKitFadingCircle(
 color: Colors.white,
 size: 50.0,
);

Now, there is an itemBuilder alternative

SpinKitFadingCircle(
 itemBuilder: (_, int index) {
   return DecoratedBox(
     decoration: BoxDecoration(
       color: index.isEven ? Colors.red : Colors.green,
     ),
   );
 },
);

Which produces