diff --git a/packages/flutter/lib/src/animation/animation_controller.dart b/packages/flutter/lib/src/animation/animation_controller.dart index 764514ef234..c8adf119433 100644 --- a/packages/flutter/lib/src/animation/animation_controller.dart +++ b/packages/flutter/lib/src/animation/animation_controller.dart @@ -605,6 +605,10 @@ class AnimationController extends Animation /// repeat. The [status] will be reported as [AnimationStatus.reverse] when /// the animation runs from [max] to [min]. /// + /// Each run of the animation will have a duration of `period`. If `period` is not + /// provided, [duration] will be used instead, which has to be set before [repeat] is + /// called either in the constructor or later by using the [duration] setter. + /// /// Returns a [TickerFuture] that never completes. The [TickerFuture.orCancel] future /// completes with an error when the animation is stopped (e.g. with [stop]). ///