jumping_dot 0.0.4 jumping_dot: ^0.0.4 copied to clipboard
We are aiming to provide an animated jumping dot indicators to Flutter developers.
jumping_dot #
Jumping Dot Indicator (null safety)
Usage Jumping Dot #
To use this plugin, add jumping_dot as a
dependency in your pubspec.yaml
file.
Example usage :
class Example extends StatelessWidget {
@override
Widget build(BuildContext context) {
return Scaffold(
body: Center(
child: JumpingDots(
color: Colors.yellow,
radius: 10,
numberOfDots: 3,
animationDuration = Duration(milliseconds: 200),
),
),
);
}
}
Getting Started flutter #
For help getting started with Flutter, view our online documentation, which offers tutorials, samples, guidance on mobile development, and a full API reference.