diff --git a/packages/flutter/lib/src/material/progress_indicator.dart b/packages/flutter/lib/src/material/progress_indicator.dart index b29452b8e75..f217332ef09 100644 --- a/packages/flutter/lib/src/material/progress_indicator.dart +++ b/packages/flutter/lib/src/material/progress_indicator.dart @@ -1384,10 +1384,10 @@ class _RefreshProgressIndicatorState extends _CircularProgressIndicatorState { return _buildMaterialIndicator( context, // Lengthen the arc a little - 1.05 * _CircularProgressIndicatorState._strokeHeadTween.evaluate(_controller), - _CircularProgressIndicatorState._strokeTailTween.evaluate(_controller), - _CircularProgressIndicatorState._offsetTween.evaluate(_controller), - _CircularProgressIndicatorState._rotationTween.evaluate(_controller), + 1.05 * _CircularProgressIndicatorState._strokeHeadTween.transform(_controller.value), + _CircularProgressIndicatorState._strokeTailTween.transform(_controller.value), + _CircularProgressIndicatorState._offsetTween.transform(_controller.value), + _CircularProgressIndicatorState._rotationTween.transform(_controller.value), ); }, );