flutter_spinkit 5.0.0 flutter_spinkit: ^5.0.0 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.0.0 #
- Migrate to null safety
4.1.2+1 #
- Upgrades the example to AndroidX
4.1.2 #
- Introduced new
itemCount
property 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
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 const
s #
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,
),
);
},
);