浏览代码

fix(mobile): Decrease ScrollBar Fade timeout to a second (#3370)

shalong-tanwen 2 年之前
父节点
当前提交
337cd33042
共有 1 个文件被更改,包括 2 次插入2 次删除
  1. 2 2
      mobile/lib/modules/home/ui/asset_grid/immich_asset_grid_view.dart

+ 2 - 2
mobile/lib/modules/home/ui/asset_grid/immich_asset_grid_view.dart

@@ -341,8 +341,8 @@ class ImmichAssetGridViewState extends State<ImmichAssetGridView> {
             backgroundColor: Theme.of(context).hintColor,
             labelTextBuilder: _labelBuilder,
             labelConstraints: const BoxConstraints(maxHeight: 28),
-            scrollbarAnimationDuration: const Duration(seconds: 1),
-            scrollbarTimeToFade: const Duration(seconds: 4),
+            scrollbarAnimationDuration: const Duration(milliseconds: 300),
+            scrollbarTimeToFade: const Duration(milliseconds: 1000),
             child: listWidget,
           )
         : listWidget;