flutter_bounce_ball 1.0.0 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,
),
),
);
}
}