animated_checkmark 1.0.0 animated_checkmark: ^1.0.0 copied to clipboard
Easy way to displaying, animating, and styling checkmark icon.
Easy way to displaying, animating, and styling checkmark icon.
Preview #
Features #
- Animated show/hide by active flag or progress value.
- Animated color, weight, and size.
- Sharp or round style.
Usage #
For a complete usage, please see the example.
To read more about classes and other references used by animated_checkmark
, see the API Reference.
// animate by active flag
AnimatedCheckmark(
active: true,
weight: 2,
size: const Size.square(12),
color: Colors.blue,
style: CheckmarkStyle.round,
);
// animate by progress value [0.0-1.0]
Checkmark(
progress: 0.5,
weight: 2,
size: const Size.square(12),
color: Colors.blue,
style: CheckmarkStyle.round,
);