taler-ios

iOS apps for GNU Taler (wallet)
Log | Files | Refs | README | LICENSE

commit e12c1acdd3ecdc0430d56c6cbf179daf16e1935f
parent 25ef2d8a8e7146a3ea604fabb89249d777710161
Author: Marc Stibane <marc@taler.net>
Date:   Mon, 24 Jul 2023 16:49:06 +0200

ToS

Diffstat:
MTalerWallet1/Views/Sheets/P2P_Sheets/P2pReceiveURIView.swift | 5++++-
1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/TalerWallet1/Views/Sheets/P2P_Sheets/P2pReceiveURIView.swift b/TalerWallet1/Views/Sheets/P2P_Sheets/P2pReceiveURIView.swift @@ -47,12 +47,15 @@ struct P2pReceiveURIView: View { }.buttonStyle(TalerButtonStyle(type: .prominent)) .padding() } else { + Text("You must accept the Terms of Service first before you can receive electronic cash to your wallet.") + .multilineTextAlignment(.leading) + .padding() NavigationLink(destination: LazyView { WithdrawTOSView(exchangeBaseUrl: nil, viewID: SHEET_RCV_P2P_TOS, acceptAction: nil) // pop back to here }) { - Text("Check Terms of Service") + Text("Read Terms of Service") }.buttonStyle(TalerButtonStyle(type: .prominent)) .padding() }