浏览代码

Merge pull request #321 from ente-io/fix_top_app_bar

Fix top appBar height for android
Manav 3 年之前
父节点
当前提交
c5ff4dafc1
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      lib/ui/fading_app_bar.dart

+ 1 - 1
lib/ui/fading_app_bar.dart

@@ -73,7 +73,7 @@ class FadingAppBarState extends State<FadingAppBar> {
         opacity: _shouldHide ? 0 : 1,
         duration: Duration(milliseconds: 150),
       ),
-      height: Platform.isAndroid ? 64 : 96,
+      height: Platform.isAndroid ? 80 : 96,
     );
   }