From 7016e79652ec14605a7385556cb993ce1e302d20 Mon Sep 17 00:00:00 2001 From: Anh Date: Tue, 20 Feb 2024 13:50:57 +0700 Subject: [PATCH] Remove InfiniteProgressCircle --- flutter/lib/ui/home/benchmark_running_screen.dart | 13 +++++-------- 1 file changed, 5 insertions(+), 8 deletions(-) diff --git a/flutter/lib/ui/home/benchmark_running_screen.dart b/flutter/lib/ui/home/benchmark_running_screen.dart index 05b590ca8..88bfc78b6 100644 --- a/flutter/lib/ui/home/benchmark_running_screen.dart +++ b/flutter/lib/ui/home/benchmark_running_screen.dart @@ -114,10 +114,10 @@ class _BenchmarkRunningScreenState extends State { ), ), ), - InfiniteProgressCircle( - size: containerWidth + 20, - strokeWidth: 6.0, - ), + // InfiniteProgressCircle( + // size: containerWidth + 20, + // strokeWidth: 6.0, + // ), ], ); } @@ -201,10 +201,7 @@ class _BenchmarkRunningScreenState extends State { const trailingWidth = 24.0; Widget? doneIcon; if (progress.currentBenchmark?.taskName == benchmarkInfo.taskName) { - doneIcon = const InfiniteProgressCircle( - size: trailingWidth, - strokeWidth: 2, - ); + doneIcon = null; } else if (progress.completedBenchmarks.contains(benchmarkInfo)) { doneIcon = const Icon( Icons.check_circle,