Releases: jogboms/flutter_spinkit
Releases · jogboms/flutter_spinkit
v5.2.1
What's Changed
- removed deprecated command
format
and useddart format
by @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
v5.2.0
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
Delayed Goodies!
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
Null safety!
- Migrate to null safety
Count on the Waves! 🌊
- Introduced new itemCount property to SpinKitWave. Pr #71 by @payam-zahedi
- Fixed broken calculations that made certain animations behave weirdly
Easy, Auto-Reverse 🚔
- Utilize native flutter auto-reverse feature for AnimationController
Quality Control 🎖
- 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);
Awesome #61 PR by @Abhishek0706
Controllers 🕹
This release introduces injectable AnimationController
to allow for fine-grain control from anywhere. Enjoy!