taler-ios

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

commit 3f2e7e9ae4cec8474fd8452c160c81db1f8900e7
parent 4a32f59a58e6daa01bc4d66f422c729eda0686e1
Author: Marc Stibane <marc@taler.net>
Date:   Fri, 12 Jun 2026 15:27:15 +0200

debugging

Diffstat:
MTalerWallet1/Views/Transactions/TransactionsListView.swift | 14++++++++++----
1 file changed, 10 insertions(+), 4 deletions(-)

diff --git a/TalerWallet1/Views/Transactions/TransactionsListView.swift b/TalerWallet1/Views/Transactions/TransactionsListView.swift @@ -207,11 +207,17 @@ struct TransactionsArraySection: View { } header: { #if TALER_NIGHTLY if developerMode && debugViews { - HStack(spacing: 50) { - Button("<") { padd -= 1 } + HStack { + Button("<<") { padd += 10 } + Spacer() + Button("<") { padd += 1 } + Spacer() Button("\(padd)") { padd = 0 } - Button(">") { padd += 1 } - } + Spacer() + Button(">") { padd -= 1 } + Spacer() + Button(">>") { padd -= 10 } + }.font(.body) } else { if let header { headerView(header)