v1.0.5animated_check
Flutter용 간단한 애니메이션 체크 아이콘 위젯
32좋아요 2.1천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!