bouncy_dots_loader 0.0.1+7
bouncy_dots_loader: ^0.0.1+7 copied to clipboard
Beautiful, smooth and customizable dot-based loading animations for Flutter apps.
animated_loaders #
A beautiful collection of smooth, customizable dot-based loading animations for Flutter.
This package provides modern, minimal and user-friendly loaders ideal for all types of apps.
Features #
- ✔ Four high-quality dot animations:
- Bouncing Dots
- Wave Dots
- Scaling Dots
- Fading Dots
- ✔ Lightweight and easy to use
- ✔ Fully customizable (size, color, speed, dot count)
- ✔ Smooth animations with no jank
- ✔ Supports Android, iOS, Web, Desktop
- ✔ Includes visibility controls (fade-in & fade-out)
Getting started #
Add this package to your pubspec.yaml:
dependencies:
bouncy_dots_loader : ^0.0.1+3
Import it in your Dart file:
import 'package:bouncy_dots_loader/bouncy_dots_loader.dart';
Usage #
🔵 Example: Bouncing Dots Loader
BouncingDotsLoader(
type: AnimatedLoaderType.bouncingDots,
size: 60,
color: Colors.blue,
);
🌊 Wave Dots #
BouncingDotsLoader(
type: AnimatedLoaderType.waveDots,
size: 50,
color: Colors.green,
);
🔍 Scaling Dots #
BouncingDotsLoader(
type: AnimatedLoaderType.scalingDots,
size: 48,
color: Colors.orange,
);
🌫 Fading Dots #
BouncingDotsLoader(
type: AnimatedLoaderType.fadingDots,
size: 42,
color: Colors.purple,
);
👁 With visibility animation (optional) #
BouncingDotsLoader(
type: AnimatedLoaderType.bouncingDots,
visible: false, // Smooth fade-out effect
);
Additional information
This package is open-source and contributions are welcome! You can:
⭐ Star the GitHub repository
🐞 Report issues
🔧 Submit pull requests
📢 Suggest new loader styles
If you face any problems, feel free to open an issue. Thank you for using animated_loaders 🎉
