Explorar el Código

Merge pull request #321 from ente-io/fix_top_app_bar

Fix top appBar height for android
Manav hace 3 años
padre
commit
c5ff4dafc1
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  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,
         opacity: _shouldHide ? 0 : 1,
         duration: Duration(milliseconds: 150),
         duration: Duration(milliseconds: 150),
       ),
       ),
-      height: Platform.isAndroid ? 64 : 96,
+      height: Platform.isAndroid ? 80 : 96,
     );
     );
   }
   }