flutter_spinkit 4.0.0 copy "flutter_spinkit: ^4.0.0" to clipboard
flutter_spinkit: ^4.0.0 copied to clipboard

outdated

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.

4.0.0 #

Feature #

SpinKitFadingCircle(
  color: Colors.white,
  size: 50.0,
  controller: AnimationController(vsync: this, duration: const Duration(milliseconds: 1200)),
);

  • DualRing lineWidth parameter 5873e7. Closes #42

3.1.0 #

Feature #

Fixes #

  • state disposed before ticker 0c9b6e3

3.0.0 #

Before #

SpinKitFadingCircle(
  color: Colors.white,
  size: 50.0,
);

Now, there is an itemBuilder alternative #

SpinKitFadingCircle(
  itemBuilder: (_, int index) {
    return DecoratedBox(
      decoration: BoxDecoration(
        color: index.isEven ? Colors.red : Colors.green,
      ),
    );
  },
);

Which produces #

3932
likes
0
pub points
100%
popularity

Publisher

verified publisherogbomo.com

A collection of loading indicators animated with flutter. Heavily inspired by @tobiasahlin's SpinKit.

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

flutter

More

Packages that depend on flutter_spinkit