flutter_bounce_ball 1.0.0 copy "flutter_bounce_ball: ^1.0.0" to clipboard
flutter_bounce_ball: ^1.0.0 copied to clipboard

A Flutter package providing a customizable bouncing ball loader. This loader consists of a bouncing ball within a circular container.

Features #

Easily integrate a bouncing ball loader into your Flutter applications. Customize the size, color of the ball, and the color of the container.

Getting started #

To use this package, add flutter_bounce_ball to your pubspec.yaml file:

Usage #


class BounceBallLoader extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return Scaffold(
      appBar: AppBar(
        title: Text('Bounce Ball Loader Example'),
      ),
      body: Center(
        child: FlutterBounceBall(
          size: 70.0,
          ballColor: Colors.orange,
          containerColor: Colors.black,
        ),
      ),
    );
  }
}
6
likes
130
points
18
downloads

Publisher

unverified uploader

Weekly Downloads

A Flutter package providing a customizable bouncing ball loader. This loader consists of a bouncing ball within a circular container.

Repository (GitHub)
View/report issues

Documentation

API reference

License

unknown (license)

Dependencies

flutter

More

Packages that depend on flutter_bounce_ball