flutter_spinkit
A collection of loading indicators animated with flutter. Heavily inspired by @tobiasahlin's SpinKit.
5.2.2
423K downloads/mo
#570 most downloaded on pub.dev
jogboms/flutter_spinkit
What this package is like to depend on
Last release 1 years ago
11 Aug 2025
Release timing varies
gaps range from 2 weeks to 1.7 years
Most releases are documented
notes for 13 of 18 stable releases
Nothing withdrawn
no release was ever pulled
8 years old
19 releases · first in 2018
0 releases in the last 12 months
see the full history below
Release timeline
19 releases · Jul 2018 to Aug 2025Releases
latest 19-
5.2.211 Aug 2025Release notes
Open source →What's Changed
- Added some customization options to fading_circle by @paulopicasso in #121
- Fix deprecated withOpacity usage in SpinKitDoubleBounce by @Copilot in #130
- Fixed incorrect rotation in WanderingCubes animation by @muhitmahmudbs23 in #129
New Contributors
- @paulopicasso made their first contribution in #121
- @Copilot made their first contribution in #130
- @muhitmahmudbs23 made their first contribution in #129
Full Changelog: v5.2.1...v5.2.2
-
5.2.125 Mar 2024Release notes
Open source →What's Changed
- removed deprecated command
formatand useddart formatby @Avadhkumar-geek in #118 - refactor: increase code quality by @OutdatedGuy in #117
- Fixed SpinKitCubeGrid animation mentioned in #80 by @SageMik in #120
New Contributors
- @Avadhkumar-geek made their first contribution in #118
- @OutdatedGuy made their first contribution in #117
- @SageMik made their first contribution in #120
Full Changelog: v5.2.0...v5.2.1
- removed deprecated command
-
5.2.001 May 2023Release notes
Open source →What's Changed
- Update image scheme (http -> https) by @sh-cho in #105
- Added a new Spinkit widget (SpinKitWaveSpinner) by @JasperEssien2 in #104
- setState() called after dispose() fixed by @xaldarof in #112
- Added new Spinkit- PulsingGrid by @ashishbeck in #107
- fix jumpy dot in SpinKitFadingCircle by @y0av in #114
New Contributors
- @sh-cho made their first contribution in #105
- @JasperEssien2 made their first contribution in #104
- @xaldarof made their first contribution in #112
- @ashishbeck made their first contribution in #107
- @y0av made their first contribution in #114
Full Changelog: v5.1.0...v5.2.0
Release notes
Open source →- Fix
SpinKitCircle,SpinKitFadingCircle,SpinKitDancingSquareanimation - Fix calling
setStateon unmounted states - Introduced [SpinKitWaveSpinner]
- Introduced [SpinKitPulsingGrid]
-
5.1.028 Aug 2021Release notes
Open source →- 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
- Renamed
-
5.0.004 Mar 2021 -
5.0.0-nullsafety.004 Mar 2021 pre-release -
4.1.221 Feb 2020Release notes
Open source →- Introduced new
itemCountproperty toSpinKitWave - Fixed broken calculations that made certain animations behave weirdly
- Introduced new
-
4.1.2+126 Mar 2020 -
4.1.114 Dec 2019 -
4.1.1+114 Dec 2019 -
4.1.030 Nov 2019Release notes
Open source →- 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
constsconst spinkit = SpinKitSquareCircle(color: Colors.white, size: 50.0);<img src="https://raw.githubusercontent.com/jogboms/flutter_spinkit/master/screenshots/square_circle.gif" width="100px" height="100px">
-
4.0.017 Aug 2019Release notes
Open source →Feature
final spinkit = SpinKitFadingCircle( color: Colors.white, size: 50.0, controller: AnimationController(vsync: this, duration: const Duration(milliseconds: 1200)), ); -
3.1.028 Dec 2018Release notes
Open source → -
3.0.004 Nov 2018Release notes
Open source →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
<img src="https://raw.githubusercontent.com/jogboms/flutter_spinkit/master/screenshots/itemBuilder.gif" width="100px">
-
2.1.031 Aug 2018Nothing published for this version
-
2.0.131 Jul 2018Nothing published for this version
-
2.0.019 Jul 2018Nothing published for this version
-
1.1.005 Jul 2018Nothing published for this version
-
1.0.005 Jul 2018Nothing published for this version