Prechádzať zdrojové kódy

DetailPage: Fix appbar height for iOS

Neeraj Gupta 3 rokov pred
rodič
commit
0e01af4af2
1 zmenil súbory, kde vykonal 1 pridanie a 1 odobranie
  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 : 80,
+      height: Platform.isAndroid ? 64 : 96,
     );
     );
   }
   }