v1.0.5animated_check
一个用于 Flutter 的简单动画复选图标小部件
32喜欢 2100近 30 天下载150Pub 分数
AndroidiOSWebmacOSWindowsLinux
Flutter 的一个动画复选图标小部件实现
{"sdk":"flutter"}{"sdk":"flutter"}以下为英文项目原文快照,最新内容请访问 GitHub。
AnimatedCheck is a Flutter package with a simple implementation of an animated checkmark icon.
https://github.com/chrisedg87/flutter_animated_check/raw/main/screenshots/animated_check.gif
Add this to your pubspec.yaml:
dependencies:
animated_check: ^1.0.0
import 'package:animated_check/animated_check.dart';
_controller = AnimationController(vsync: this, duration: const Duration(seconds: 1));
Animation _animation = Tween<double>(begin: 0, end: 1)
.animate(CurvedAnimation(
parent: _animationController,
curve: Curves.easeInOutCirc)
);
void _showCheck() {
_controller.forward();
}
void _resetCheck() {
_controller.reverse();
}
AnimatedCheck(
progress: _animation,
size: 200,
)
All contributions are welcome!