https://github.com/davigmacode/flutter_animated_checkmark
Easy way to displaying, animating, and styling checkmark icon.
https://github.com/davigmacode/flutter_animated_checkmark
animated checkmark flutter package widgetarian
Last synced: 3 months ago
JSON representation
Easy way to displaying, animating, and styling checkmark icon.
- Host: GitHub
- URL: https://github.com/davigmacode/flutter_animated_checkmark
- Owner: davigmacode
- License: bsd-3-clause
- Created: 2022-10-07T07:46:40.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-08-07T13:31:11.000Z (11 months ago)
- Last Synced: 2025-02-14T17:07:40.132Z (4 months ago)
- Topics: animated, checkmark, flutter, package, widgetarian
- Language: Dart
- Homepage: https://pub.dev/packages/animated_checkmark
- Size: 7.5 MB
- Stars: 1
- Watchers: 3
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Funding: .github/FUNDING.yml
- License: LICENSE
Awesome Lists containing this project
README
[](https://pub.dev/packages/animated_checkmark)  [](https://www.buymeacoffee.com/davigmacode) [](https://ko-fi.com/davigmacode)
Easy way to displaying, animating, and styling checkmark icon.
## Preview
[](https://davigmacode.github.io/flutter_animated_checkmark)
[Demo](https://davigmacode.github.io/flutter_animated_checkmark)
## Features
* Animated check/uncheck/undetermined by boolean value or double value.
* Animated color, weight, and size.
* Rounded or sharpen line style.
* Optionally draw cross for falsy value.
* Optionally undraw dash for undetermined value.## Usage
For a complete usage, please see the [example](https://pub.dev/packages/animated_checkmark#-example-tab-).
To read more about classes and other references used by `animated_checkmark`, see the [API Reference](https://pub.dev/documentation/animated_checkmark/latest/).
```dart
// animate by value flag
Checkmark(
checked: true,
indeterminate: false,
size: 12,
color: Colors.blue,
drawCross: true,
drawDash: false,
);// animate by progress value [-1.0 to 1.0]
RawCheckmark(
progress: 0.5,
weight: 2,
size: 12,
color: Colors.blue,
rounded: true,
);
```## Sponsoring
If this package or any other package I created is helping you, please consider to sponsor me so that I can take time to read the issues, fix bugs, merge pull requests and add features to these packages.