commit dffd645b370c02cc3a0885f493ed00d3564d7b82
parent c3994d1d4597a7a183203230eccd9a035af7cecc
Author: Marc Stibane <marc@taler.net>
Date: Mon, 28 Apr 2025 07:42:19 +0200
use OIMbalanceButton
Diffstat:
1 file changed, 4 insertions(+), 2 deletions(-)
diff --git a/TalerWallet1/Views/OIM/OIMView.swift b/TalerWallet1/Views/OIM/OIMView.swift
@@ -35,21 +35,23 @@ struct OIMnavBack<Content: View>: View {
content()
VStack {
HStack {
- BackButton() {
+ OIMbalanceButton(isOpen: true, tint: false) {
var transaction = Transaction()
transaction.disablesAnimations = true
withTransaction(transaction) {
dismiss()
}
}
+ .frame(width: 66, height: 66)
Spacer()
- ForwardButton(enabled: !amount.isZero) {
+ OIMsendButton(isGoal: true, enabled: !amount.isZero) {
var transaction = Transaction()
transaction.disablesAnimations = true
withTransaction(transaction) {
fwdButtonTapped = true
}
}
+ .frame(width: 66, height: 66)
}
}
#if DEBUG