commit c4dfcb22283d37f2826adc53997f4966fd898c96 parent 23f77fbf033b6de93e2a017caf18acce326c1879 Author: Marc Stibane <marc@taler.net> Date: Thu, 29 Feb 2024 14:45:22 +0100 Empty Exchanges Diffstat:
| M | TalerWallet1/Views/Banking/ExchangeListView.swift | | | 15 | +++++++++++++-- |
1 file changed, 13 insertions(+), 2 deletions(-)
diff --git a/TalerWallet1/Views/Banking/ExchangeListView.swift b/TalerWallet1/Views/Banking/ExchangeListView.swift @@ -116,8 +116,19 @@ extension ExchangeListCommonV: View { } .overlay { if exchanges.isEmpty { - Text("No Payment Services yet...") - .talerFont(.body) + List { + Section { + Text("There are no Payment Services yet.") + .talerFont(.title3) + } + Section { + Text("Use the Add button to add a service.") + .talerFont(.body) + .listRowSeparator(.hidden) + Text("You can also scan a withdrawal QR code from your bank on the Balances tab to automatically add a payment service.") + .talerFont(.body) + } + } } } .onNotification(.ExchangeAdded) { notification in