From 9057401b163f2e018f4bc0602b4c24c9bff49cb0 Mon Sep 17 00:00:00 2001 From: bggRGjQaUbCoE Date: Sat, 4 Oct 2025 20:58:59 +0800 Subject: [PATCH] opt video progress indicator Signed-off-by: bggRGjQaUbCoE --- lib/common/widgets/progress_bar/video_progress_indicator.dart | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/common/widgets/progress_bar/video_progress_indicator.dart b/lib/common/widgets/progress_bar/video_progress_indicator.dart index e284f3b77..909e4aa1f 100644 --- a/lib/common/widgets/progress_bar/video_progress_indicator.dart +++ b/lib/common/widgets/progress_bar/video_progress_indicator.dart @@ -8,6 +8,8 @@ Widget videoProgressIndicator(double progress) => ClipRect( child: LinearProgressIndicator( minHeight: 10, value: progress, + // ignore: deprecated_member_use + year2023: true, stopIndicatorColor: Colors.transparent, ), ),