Merge pull request #321 from ente-io/fix_top_app_bar

Fix top appBar height for android
This commit is contained in:
Manav 2022-06-17 16:02:18 +05:30 committed by GitHub
commit c5ff4dafc1
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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,
);
}