From 3b45fe2114fde4a2faf9718f3f980d8d9d03a83a Mon Sep 17 00:00:00 2001 From: Matt Bruce Date: Sun, 8 Feb 2026 12:25:47 -0600 Subject: [PATCH] Signed-off-by: Matt Bruce --- .../mattbruce.xcuserdatad/xcschemes/xcschememanagement.plist | 4 ++-- .../Onboarding/Views/Components/OnboardingFeatureRow.swift | 4 ++++ 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/TheNoiseClock.xcodeproj/xcuserdata/mattbruce.xcuserdatad/xcschemes/xcschememanagement.plist b/TheNoiseClock.xcodeproj/xcuserdata/mattbruce.xcuserdatad/xcschemes/xcschememanagement.plist index 2d2817a..528733b 100644 --- a/TheNoiseClock.xcodeproj/xcuserdata/mattbruce.xcuserdatad/xcschemes/xcschememanagement.plist +++ b/TheNoiseClock.xcodeproj/xcuserdata/mattbruce.xcuserdatad/xcschemes/xcschememanagement.plist @@ -7,12 +7,12 @@ TheNoiseClock.xcscheme_^#shared#^_ orderHint - 1 + 2 TheNoiseClockWidget.xcscheme_^#shared#^_ orderHint - 0 + 3 diff --git a/TheNoiseClock/Features/Onboarding/Views/Components/OnboardingFeatureRow.swift b/TheNoiseClock/Features/Onboarding/Views/Components/OnboardingFeatureRow.swift index d69e44e..2fc781f 100644 --- a/TheNoiseClock/Features/Onboarding/Views/Components/OnboardingFeatureRow.swift +++ b/TheNoiseClock/Features/Onboarding/Views/Components/OnboardingFeatureRow.swift @@ -25,6 +25,10 @@ struct OnboardingFeatureRow: View { Text(text) .typography(.body) .foregroundStyle(AppTextColors.secondary) + .lineLimit(nil) + .multilineTextAlignment(.leading) + .fixedSize(horizontal: false, vertical: true) + .layoutPriority(1) } .frame(maxWidth: 320, alignment: .leading) .frame(maxWidth: .infinity, alignment: .center)