FLUTTER ECOSYSTEM

chrisedg87/flutter_animated_check

A implementation of an animated check icon widget for Flutter

flutter_animated_check project cover
Stars
7
Forks
5
Last push (UTC)
Oct 11, 2021
Project status
Active
Chris Edgington GitHub avatar
LanguagesDartKotlinSwiftObjective-C

Packages published by this repository

Dependencies used

Dependency list 2 items
  • flutter{"sdk":"flutter"}
  • flutter_testDevelopment{"sdk":"flutter"}

Original README

English project snapshot. Visit GitHub for the latest content.

Expand / collapse project README

animated_check

pub package

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

Installation

Add this to your pubspec.yaml:

dependencies:
    animated_check: ^1.0.0

Usage

Import
import 'package:animated_check/animated_check.dart';
Simple Implementation
_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,
)

Contributions

All contributions are welcome!