From 0a9f7cbf926444563313eb6cb8468f6f3d7a56bd Mon Sep 17 00:00:00 2001 From: Pete Schwamb Date: Mon, 10 Aug 2026 10:17:14 -0500 Subject: [PATCH] Share Data: add spacing between preference rows With the CheckmarkListItem Liquid Glass fix (LoopKit #603) removing the per-row button backgrounds that used to give implicit separation, the three options sat too close together. Give the chooser VStack explicit 24pt spacing. --- LoopSupportKitUI/Views/UsageDataPrivacyPreferenceView.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/LoopSupportKitUI/Views/UsageDataPrivacyPreferenceView.swift b/LoopSupportKitUI/Views/UsageDataPrivacyPreferenceView.swift index bb6e2c1..53daba5 100644 --- a/LoopSupportKitUI/Views/UsageDataPrivacyPreferenceView.swift +++ b/LoopSupportKitUI/Views/UsageDataPrivacyPreferenceView.swift @@ -65,7 +65,7 @@ public struct UsageDataPrivacyPreferenceView: View { public var chooser: some View { VStack(alignment: .center, spacing: 20) { - VStack(alignment: .leading) { + VStack(alignment: .leading, spacing: 24) { choice(title: LocalizedString("No Sharing", comment: "Title in UsageDataPrivacyPreferenceView for no sharing"), description: LocalizedString("Do not share any data.", comment: "Description in UsageDataPrivacyPreferenceView for no sharing"), sharingPreference: .noSharing)