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

View File

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