flutter_spinkit 3.1.0 copy "flutter_spinkit: ^3.1.0" to clipboard
flutter_spinkit: ^3.1.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.

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 #

3916
likes
40
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

MIT (LICENSE)

Dependencies

flutter

More

Packages that depend on flutter_spinkit