Skip to content

Instantly share code, notes, and snippets.

@JorgeCastilloPrz
Created June 4, 2019 18:01
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save JorgeCastilloPrz/46808e90ef1d4a4b2ea8542e155f5451 to your computer and use it in GitHub Desktop.
Save JorgeCastilloPrz/46808e90ef1d4a4b2ea8542e155f5451 to your computer and use it in GitHub Desktop.
Arc tail animation Tween.
final Animatable<double> _kStrokeTailTween = CurveTween(
curve: const Interval(0.5, 1.0, curve: Curves.fastOutSlowIn),
).chain(CurveTween(
curve: const SawTooth(5),
));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment