diff --git a/lib/src/animate.dart b/lib/src/animate.dart index 765591a..07cd5d2 100644 --- a/lib/src/animate.dart +++ b/lib/src/animate.dart @@ -315,7 +315,12 @@ class _AnimateState extends State with SingleTickerProviderStateMixin { _delayed?.ignore(); _initController(); _updateValue(); - _delayed = Future.delayed(widget.delay, () => _play()); + + if (widget.delay == Duration.zero) { + _play(); + } else { + _delayed = Future.delayed(widget.delay, () => _play()); + } } void _initController() {