commit 3d542f08633f7632b5f115a0d1b0ef897e8e9bbd parent ed4c8368159aa8dc41c64bc4d502f9675ee3aedc Author: Marc Stibane <marc@taler.net> Date: Sat, 31 May 2025 11:11:31 +0200 call instructions Diffstat:
| M | TalerWallet1/Views/Transactions/TransactionSummaryV.swift | | | 6 | +++++- |
1 file changed, 5 insertions(+), 1 deletion(-)
diff --git a/TalerWallet1/Views/Transactions/TransactionSummaryV.swift b/TalerWallet1/Views/Transactions/TransactionSummaryV.swift @@ -365,7 +365,11 @@ struct TransactionSummaryV: View { obtainStr: nil, // only for withdrawal debitIBAN: debitPayTo.iban, account: account) - + NavigationLink(destination: wireDetails) { + Text(minimalistic ? "Instructions" + : "Wire transfer instructions") + .talerFont(.title3) + } } } }