From 332497cf905ccf999fe99d780673bf34998e00c6 Mon Sep 17 00:00:00 2001 From: nyne Date: Tue, 18 Mar 2025 17:42:15 +0800 Subject: [PATCH] Increase scroll indicator size. --- lib/components/scroll.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/components/scroll.dart b/lib/components/scroll.dart index e780b1e..3988630 100644 --- a/lib/components/scroll.dart +++ b/lib/components/scroll.dart @@ -174,7 +174,7 @@ class _AppScrollBarState extends State { double viewHeight = 0; - final _scrollIndicatorSize = App.isDesktop ? 42.0 : 48.0; + final _scrollIndicatorSize = App.isDesktop ? 42.0 : 64.0; late final VerticalDragGestureRecognizer _dragGestureRecognizer;