fix(mobile): don't cut off top corners of app bar (#26550)

It's not visible normally, but in screenshots and when casting, the top
corners of the app bar are cut off. This should fix that.
This commit is contained in:
Thomas 2026-02-27 12:09:58 +00:00 committed by GitHub
parent c2d8400899
commit 1d89190f96
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -62,7 +62,7 @@ class ImmichSliverAppBar extends ConsumerWidget {
pinned: pinned,
snap: snap,
expandedHeight: expandedHeight,
shape: const RoundedRectangleBorder(borderRadius: BorderRadius.all(Radius.circular(5))),
shape: const RoundedRectangleBorder(borderRadius: BorderRadius.vertical(bottom: Radius.circular(5))),
automaticallyImplyLeading: false,
centerTitle: false,
title: title ?? const _ImmichLogoWithText(),