|
@@ -121,11 +121,13 @@ struct PaywallView: View {
|
|
|
|
|
|
|
|
private var legalSection: some View {
|
|
private var legalSection: some View {
|
|
|
VStack(spacing: 12) {
|
|
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) {
|
|
HStack(spacing: 0) {
|
|
|
PaywallFooterLinkView(title: "Continue with free plan", action: onClose)
|
|
PaywallFooterLinkView(title: "Continue with free plan", action: onClose)
|