v1.0.5animated_check
Um widget de ícone de marca de verificação animado simples para Flutter
32Curtidas 2,1 milDownloads em 30 dias150Pontos Pub
AndroidiOSWebmacOSWindowsLinux
Uma implementação de um widget de ícone de marcação animado para Flutter
{"sdk":"flutter"}{"sdk":"flutter"}Texto original em inglês. Visite o GitHub para a versão atual.
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!