flutter_spinkit 5.2.2
flutter_spinkit: ^5.2.2 copied to clipboard
A collection of loading indicators animated with flutter. Heavily inspired by @tobiasahlin's SpinKit.
ChangeLog for Flutter Spinkit #
A collection of loading indicators animated with flutter. Heavily inspired by @tobiasahlin's SpinKit.
5.2.2 #
- Fix
SpinKitWanderingCubesnot working as showcased
5.2.1 #
- Fix
SpinKitCubeGridnot working as showcased
5.2.0 #
- Fix
SpinKitCircle,SpinKitFadingCircle,SpinKitDancingSquareanimation - Fix calling
setStateon unmounted states - Introduced [SpinKitWaveSpinner]
- Introduced [SpinKitPulsingGrid]
5.1.0 #
- Renamed
SpinKitPouringHourglass->SpinKitPouringHourGlassfor correctness - Fix
SpinKitFoldingCubeanimation - Fix disposing of non-local animation controllers
- Introduced
strokeWidthto 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
itemCountproperty toSpinKitWave - 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
constSpinKits - 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 #
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 #
