DetailPage: Fix appbar height for iOS

This commit is contained in:
Neeraj Gupta 2022-06-10 21:49:09 +05:30
parent d018d0b2a9
commit 0e01af4af2
No known key found for this signature in database
GPG key ID: 3C5A1684DC1729E1

View file

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