From b7dc8f3a297833a478ef296b9adbc70c0c32ca70 Mon Sep 17 00:00:00 2001 From: Trey t Date: Tue, 2 Dec 2025 13:35:32 -0600 Subject: [PATCH] Fix stat label truncation on smaller screens MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Add fixedSize to stat label to allow text wrapping - Expand stat box to full width for better text flow 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- iosApp/iosApp/Onboarding/OnboardingValuePropsView.swift | 2 ++ 1 file changed, 2 insertions(+) diff --git a/iosApp/iosApp/Onboarding/OnboardingValuePropsView.swift b/iosApp/iosApp/Onboarding/OnboardingValuePropsView.swift index b4165a0..76b22cb 100644 --- a/iosApp/iosApp/Onboarding/OnboardingValuePropsView.swift +++ b/iosApp/iosApp/Onboarding/OnboardingValuePropsView.swift @@ -208,9 +208,11 @@ struct FeatureCard: View { .font(.caption) .foregroundColor(Color.appTextSecondary) .multilineTextAlignment(.center) + .fixedSize(horizontal: false, vertical: true) } .padding(.horizontal, AppSpacing.lg) .padding(.vertical, AppSpacing.md) + .frame(maxWidth: .infinity) .background( RoundedRectangle(cornerRadius: AppRadius.lg) .fill(Color.appBackgroundSecondary)