Parcourir la source

Render paywall subscription disclaimer as explicit two-line text.

Split the legal copy into two dedicated lines to guarantee both statements are always visible and consistently spaced above the footer links.

Co-authored-by: Cursor <cursoragent@cursor.com>
AhtashamShahzad1 il y a 1 mois
Parent
commit
fe612d8f32
1 fichiers modifiés avec 7 ajouts et 5 suppressions
  1. 7 5
      gramora/Views/PaywallView.swift

+ 7 - 5
gramora/Views/PaywallView.swift

@@ -121,11 +121,13 @@ struct PaywallView: View {
 
     private var legalSection: some View {
         VStack(spacing: 12) {
-            Text("Your subscription will automatically renew unless auto-renew is turned off at least 24-hours before the end of the current subscription period.\nPayment will be charged to your iTunes account at confirmation of purchase.")
-                .font(.system(size: 12, weight: .medium))
-                .foregroundStyle(Color(red: 0.59, green: 0.62, blue: 0.68))
-                .multilineTextAlignment(.center)
-                .lineSpacing(2)
+            VStack(spacing: 2) {
+                Text("Your subscription will automatically renew unless auto-renew is turned off at least 24-hours before the end of the current subscription period.")
+                Text("Payment will be charged to your iTunes account at confirmation of purchase.")
+            }
+            .font(.system(size: 12, weight: .medium))
+            .foregroundStyle(Color(red: 0.59, green: 0.62, blue: 0.68))
+            .multilineTextAlignment(.center)
 
             HStack(spacing: 0) {
                 PaywallFooterLinkView(title: "Continue with free plan", action: onClose)