diff --git a/app/lib/pages/progress_page.dart b/app/lib/pages/progress_page.dart index 15231a70..9953edc2 100644 --- a/app/lib/pages/progress_page.dart +++ b/app/lib/pages/progress_page.dart @@ -433,14 +433,14 @@ class _ProgressPageState extends State with Refena { ), const SizedBox(height: 5), TweenAnimationBuilder( - tween: Tween(begin:0, end:_totalBytes == 0 ? 0 : currBytes / _totalBytes), + tween: Tween(begin: 0, end: _totalBytes == 0 ? 0 : currBytes / _totalBytes), duration: Duration(seconds: 1), curve: Curves.easeOut, builder: (context, value, child) { return CustomProgressBar( - progress: value, - borderRadius: 5, - ); + progress: value, + borderRadius: 5, + ); }, ), AnimatedCrossFade(