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