Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Historyofeverything | 5,093 | 3 years ago | 41 | mit | Dart | |||||
Flutter Launch Timeline Demo | ||||||||||
Flutter_vignettes | 3,998 | 3 months ago | 6 | mit | Dart | |||||
A collection of fun Flutter experiments, created by gskinner, in partnership with Google. | ||||||||||
Flutter_spinkit | 2,735 | 174 | 44 | 21 days ago | 16 | August 28, 2021 | 9 | mit | Dart | |
✨ A collection of loading indicators animated with flutter. Heavily Inspired by http://tobiasahlin.com/spinkit. | ||||||||||
Animated Text Kit | 1,503 | 43 | 4 | a month ago | 31 | April 24, 2021 | 51 | mit | Dart | |
🔔 A flutter package to create cool and beautiful text animations. [Flutter Favorite Package] | ||||||||||
Image | 984 | 1,262 | 101 | 10 days ago | 77 | May 18, 2022 | 66 | mit | Dart | |
Dart Image Library for opening, manipulating, and saving various different image file formats. | ||||||||||
Smooth_page_indicator | 907 | 6 | a month ago | 14 | August 28, 2021 | 1 | mit | Dart | ||
Flutter Smooth PageView indicators | ||||||||||
Bottom_navy_bar | 877 | 26 | 2 | 4 months ago | 20 | March 28, 2021 | 31 | apache-2.0 | Dart | |
A beautiful and animated bottom navigation | ||||||||||
Curved_navigation_bar | 573 | 31 | 3 months ago | 29 | February 08, 2022 | 33 | bsd-2-clause | Dart | ||
Animated Curved Navigation Bar in Flutter | ||||||||||
Flutter_circular_chart | 351 | 25 | 1 | 2 years ago | 3 | August 30, 2018 | 21 | mit | Dart | |
Animated radial and pie charts for Flutter | ||||||||||
Fcharts | 308 | 3 | 3 years ago | 11 | July 02, 2019 | 11 | mit | Dart | ||
:bar_chart: [wip] Create beautiful, responsive, animated charts using a simple and intuitive API. |
A collection of loading indicators animated with flutter. Heavily inspired by @tobiasahlin's SpinKit.
dependencies:
flutter_spinkit: ^5.2.0
import 'package:flutter_spinkit/flutter_spinkit.dart';
const spinkit = SpinKitRotatingCircle(
color: Colors.white,
size: 50.0,
);
final spinkit = SpinKitFadingCircle(
itemBuilder: (BuildContext context, int index) {
return DecoratedBox(
decoration: BoxDecoration(
color: index.isEven ? Colors.red : Colors.green,
),
);
},
);
final spinkit = SpinKitSquareCircle(
color: Colors.white,
size: 50.0,
controller: AnimationController(vsync: this, duration: const Duration(milliseconds: 1200)),
);
For more info, please, refer to the showcase.dart
in the example.
![]() RotatingPlain |
![]() DoubleBounce |
![]() Wave |
![]() WanderingCubes |
![]() FadingFour |
![]() FadingCube |
![]() Pulse |
![]() ChasingDots |
![]() ThreeBounce |
![]() Circle |
![]() CubeGrid |
![]() FadingCircle |
![]() RotatingCircle |
![]() FoldingCube |
![]() PumpingHeart |
![]() HourGlass |
![]() PouringHourGlass |
![]() PouringHourGlassRefined |
![]() FadingGrid |
![]() Ring |
![]() Ripple |
![]() SpinningCircle |
![]() SpinningLines |
![]() SquareCircle |
![]() DualRing |
![]() PianoWave |
![]() DancingSquare |
![]() ThreeInOut |
![]() WaveSpinner |
![]() PulsingGrid |
Some GIF images gotten from Android Spinkit.
If you encounter any problems feel free to open an issue. If you feel the library is missing a feature, please raise a ticket on Github and I'll look into it. Pull request are also welcome.
For help getting started with Flutter, view our online documentation.
For help on editing plugin code, view the documentation.
|
|
MIT License