Skip to content

Latest commit

 

History

History
118 lines (78 loc) · 3.01 KB

CHANGELOG.md

File metadata and controls

118 lines (78 loc) · 3.01 KB

ChangeLog for Flutter Spinkit

A collection of loading indicators animated with flutter. Heavily inspired by @tobiasahlin's SpinKit.

5.2.1

  • Fix SpinKitCubeGrid not working as showcased

5.2.0

  • Fix SpinKitCircle, SpinKitFadingCircle, SpinKitDancingSquare animation
  • Fix calling setState on unmounted states
  • Introduced [SpinKitWaveSpinner]
  • Introduced [SpinKitPulsingGrid]

5.1.0

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

5.0.0

  • Migrate to null safety

4.1.2+1

  • Upgrades the example to AndroidX

4.1.2

  • Introduced new itemCount property to SpinKitWave
  • Fixed broken calculations that made certain animations behave weirdly

4.1.1+1

  • Include Authors info in README

4.1.1

  • Utilize native flutter auto-reverse feature for AnimationController

4.1.0

  • 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);

4.0.0

Feature

final spinkit = SpinKitFadingCircle(
  color: Colors.white,
  size: 50.0,
  controller: AnimationController(vsync: this, duration: const Duration(milliseconds: 1200)),
);
  • [DualRing] lineWidth parameter 9bcfd5. Closes #42

3.1.0

Feature

Fixes

  • state disposed before ticker 0c9b6e3

3.0.0

Before

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

Now, there is an itemBuilder alternative

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

Which produces