Mercurial > public > simoleon
comparison Simoleon/SubscriptionPaywall.swift @ 57:838099ff1e02
Remove privacy policy and terms of use
author | Dennis Concepción Martín <dennisconcepcionmartin@gmail.com> |
---|---|
date | Tue, 27 Jul 2021 18:05:52 +0100 |
parents | b0bce2c8e4a9 |
children | c7b6249ab745 |
comparison
equal
deleted
inserted
replaced
56:c3c0482640ff | 57:838099ff1e02 |
---|---|
64 | 64 |
65 Spacer() | 65 Spacer() |
66 SubscribeButton(showingSubscriptionPaywall: $showingSubscriptionPaywall) | 66 SubscribeButton(showingSubscriptionPaywall: $showingSubscriptionPaywall) |
67 HStack { | 67 HStack { |
68 Spacer() | 68 Spacer() |
69 VStack { | 69 RestoreButton(showingSubscriptionPaywall: $showingSubscriptionPaywall) |
70 RestoreButton(showingSubscriptionPaywall: $showingSubscriptionPaywall) | |
71 .padding(.bottom) | |
72 HStack { | |
73 Link(destination: URL(string: "https://dennistech.io/privacy-policy")!) { | |
74 Text("Privacy Policy", comment: "Button to go to app privacy policy") | |
75 } | |
76 | |
77 Link(destination: URL(string: "https://dennistech.io/terms-of-use")!) { | |
78 Text("Terms of Use", comment: "Button to go to app terms of use") | |
79 } | |
80 } | |
81 } | |
82 | |
83 Spacer() | 70 Spacer() |
84 } | 71 } |
85 } | 72 } |
86 .padding(.bottom) | 73 .padding(.bottom) |
87 .padding(.horizontal, 40) | 74 .padding(.horizontal, 40) |