Pulsing Dots Loader
A smooth, animated pulsing dots loading widget for Flutter.
Features
- 🎨 Automatically uses your app's theme primary color
- 🖌️ Supports custom colors
- 📐 Configurable size
- ⚡ Lightweight with no dependencies
Installation
dependencies:
pulsing_dots_loader: ^0.0.1
Usage
// Uses app theme color automatically
PulsingDotsLoader()
// Custom color
PulsingDotsLoader(color: Colors.red)
// Custom size
PulsingDotsLoader(size: 32)
Parameters
| Parameter | Type | Default | Description |
|---|---|---|---|
| size | double | 16 | Overall size of loader |
| color | Color? | null | Dot color (uses theme primary if null) |