taler-ios

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

commit 15d533a30be971bf554479968dc8eb983d050023
parent c4dfcb22283d37f2826adc53997f4966fd898c96
Author: Marc Stibane <marc@taler.net>
Date:   Thu, 29 Feb 2024 14:46:44 +0100

Empty Wallet

Diffstat:
MTalerWallet1/Views/Main/WalletEmptyView.swift | 11+++++++++--
1 file changed, 9 insertions(+), 2 deletions(-)

diff --git a/TalerWallet1/Views/Main/WalletEmptyView.swift b/TalerWallet1/Views/Main/WalletEmptyView.swift @@ -21,15 +21,22 @@ struct WalletEmptyView: View { Section { Text("There is no digital cash in your wallet.") .talerFont(.title3) + } + Section { + Text("You can register an account in the demo bank, then withdraw some digital cash to experience how to pay with the money of the future.") + .talerFont(.body) .listRowSeparator(.hidden) - let title = String(localized: "LinkTitle_Test_Money", defaultValue: "Get some test money") + let title = String(localized: "LinkTitle_Test_Money", defaultValue: "Get demo money") Link(title, destination: URL(string: DEMOBANK)!) .buttonStyle(TalerButtonStyle(type: .prominent, narrow: false, aligned: .center)) .padding(.vertical) .accessibilityHint("Will go to the demo bank website.") } Section { - Text("Just register a test account in the demo bank, then withdraw some electronic cash.") + Text("Use the QR code scan button to start a withdrawal if your bank already supports Taler payments.") + .talerFont(.body) + .listRowSeparator(.hidden) + Text("You can also add a payment service manually on the Banking tab.") .talerFont(.body) } }