Last updated:
0 purchases
flutter bounce ball
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,
),
),
);
}
}
copied to clipboard
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.