comparison Simoleon/SubscriptionPaywall.swift @ 62:c7b6249ab745

uncomment localized texts
author Dennis Concepción Martín <dennisconcepcionmartin@gmail.com>
date Tue, 27 Jul 2021 18:45:43 +0100
parents 838099ff1e02
children 4082787b33e5
comparison
equal deleted inserted replaced
61:84ce5e5f0381 62:c7b6249ab745
21 .resizable() 21 .resizable()
22 .aspectRatio(contentMode: .fit) 22 .aspectRatio(contentMode: .fit)
23 .frame(width: 100, height: 100) 23 .frame(width: 100, height: 100)
24 .cornerRadius(25) 24 .cornerRadius(25)
25 25
26 Text("Unlock all access", comment: "Headline in Subscription paywall") 26 Text("Unlock all access")
27 .font(.title) 27 .font(.title)
28 .fontWeight(.semibold) 28 .fontWeight(.semibold)
29 .padding(.top) 29 .padding(.top)
30 } 30 }
31 31
74 .padding(.horizontal, 40) 74 .padding(.horizontal, 40)
75 } 75 }
76 .toolbar { 76 .toolbar {
77 ToolbarItem(placement: .cancellationAction) { 77 ToolbarItem(placement: .cancellationAction) {
78 Button(action: { showingSubscriptionPaywall = false }) { 78 Button(action: { showingSubscriptionPaywall = false }) {
79 Text("Cancel", comment: "Button to dismiss paywall modal sheet") 79 Text("Cancel")
80 } 80 }
81 } 81 }
82 } 82 }
83 } 83 }
84 } 84 }