瀏覽代碼

Fix top appBar height for android

Neeraj Gupta 3 年之前
父節點
當前提交
bb4c0dd6e6
共有 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,
     );
   }