From 3416ad563e10254158d22d645e5a1689c3bd4ad0 Mon Sep 17 00:00:00 2001 From: FuelBoard Contributor Date: Sun, 16 Aug 2026 09:57:58 +0100 Subject: [PATCH] Key sheet: taller detent + opaque background Sheet grows from .medium to .fraction(0.6) so the footer ('Colours match each station's rating on the list') clears the bottom edge with comfortable margin (verified: footer clearance +33pt). Sheet background switched from the translucent default to a solid systemGroupedBackground via .presentationBackground so the stations list no longer shows through. --- FuelBoard/StationsView.swift | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/FuelBoard/StationsView.swift b/FuelBoard/StationsView.swift index d28989d..094e98e 100644 --- a/FuelBoard/StationsView.swift +++ b/FuelBoard/StationsView.swift @@ -255,7 +255,8 @@ struct StationsView: View { } } } - .presentationDetents([.medium]) + .presentationDetents([.fraction(0.6)]) + .presentationBackground(Color(UIColor.systemGroupedBackground)) } } }