Skip to content

Commit

Permalink
Remove InfiniteProgressCircle
Browse files Browse the repository at this point in the history
  • Loading branch information
anhappdev committed Feb 20, 2024
1 parent 5c2717d commit 7016e79
Showing 1 changed file with 5 additions and 8 deletions.
13 changes: 5 additions & 8 deletions flutter/lib/ui/home/benchmark_running_screen.dart
Original file line number Diff line number Diff line change
Expand Up @@ -114,10 +114,10 @@ class _BenchmarkRunningScreenState extends State<BenchmarkRunningScreen> {
),
),
),
InfiniteProgressCircle(
size: containerWidth + 20,
strokeWidth: 6.0,
),
// InfiniteProgressCircle(
// size: containerWidth + 20,
// strokeWidth: 6.0,
// ),
],
);
}
Expand Down Expand Up @@ -201,10 +201,7 @@ class _BenchmarkRunningScreenState extends State<BenchmarkRunningScreen> {
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,
Expand Down

0 comments on commit 7016e79

Please sign in to comment.