From daf03451206eb53f20c0726276b2e44d4b23e253 Mon Sep 17 00:00:00 2001 From: Scarriffle Date: Wed, 15 Jul 2026 06:46:32 +0200 Subject: [PATCH] iOS drawer: drop the grouped-section card behind show/hide-all listRowBackground(.clear) so only the two bordered button pills show, without the surrounding grouped-list capsule. Co-Authored-By: Claude Opus 4.8 --- Calendarr iOS/Views/CalendarFilterContent.swift | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Calendarr iOS/Views/CalendarFilterContent.swift b/Calendarr iOS/Views/CalendarFilterContent.swift index 654e8a2..ff97b50 100644 --- a/Calendarr iOS/Views/CalendarFilterContent.swift +++ b/Calendarr iOS/Views/CalendarFilterContent.swift @@ -44,6 +44,8 @@ struct CalendarFilterContent: View { .buttonStyle(.bordered).frame(maxWidth: .infinity) } .listRowInsets(EdgeInsets(top: 6, leading: 12, bottom: 6, trailing: 12)) + // No surrounding grouped-section card — just the two button pills. + .listRowBackground(Color.clear) } let visibleLocals = localCalendars.filter { !banished.contains(CalendarStore.calendarKey(source: "local", calendarId: "\($0.id)"))