commit 90ffa61a4159d9557b5dfd60d85ae2ba2f2b6e17
parent d9c4d242069f9263dd5e7e0d7aec5fb5adca1868
Author: Marc Stibane <marc@taler.net>
Date: Wed, 30 Apr 2025 01:34:01 +0200
cleanup
Diffstat:
3 files changed, 7 insertions(+), 7 deletions(-)
diff --git a/TalerWallet1/Views/OIM/OIMEditView.swift b/TalerWallet1/Views/OIM/OIMEditView.swift
@@ -81,7 +81,7 @@ struct OIMEditView: View {
amountVal: $amountVal,
tappedVal: $tappedVal, // <- user tapped a val in the scroller
canEdit: true)
- .matchedGeometryEffect(id: "OIMline", in: wrapper.namespace,isSource: true)
+ .matchedGeometryEffect(id: "OIMline", in: wrapper.namespace, isSource: true)
.zIndex(1) // make notes fly from topZ
.scaleEffect(sending ? 0.6 : 1.0)
.onChange(of: amountVal) { newVal in
diff --git a/TalerWallet1/Views/OIM/OIMView.swift b/TalerWallet1/Views/OIM/OIMView.swift
@@ -66,7 +66,7 @@ struct OIMtitleView: View {
.frame(width: 66, height: 66)
.disabled(true)
.opacity(0.01)
- .matchedGeometryEffect(id: "OIMnumber", in: wrapper.namespace,isSource: true)
+ .matchedGeometryEffect(id: "OIMnumber", in: wrapper.namespace, isSource: true)
OIMamountV(amount: amount, currencyName: cash.currency.noteBase)
@@ -74,7 +74,7 @@ struct OIMtitleView: View {
.frame(width: 66, height: 66)
.disabled(true)
.opacity(0.01)
- .matchedGeometryEffect(id: "OIMaction", in: wrapper.namespace,isSource: true)
+ .matchedGeometryEffect(id: "OIMaction", in: wrapper.namespace, isSource: true)
}
}
@@ -138,7 +138,7 @@ struct OIMView: View {
}
.opacity(sending ? 0.01 : 1.0)
.frame(width: 66, height: 66)
- .matchedGeometryEffect(id: "OIMback", in: wrapper.namespace,isSource: true)
+ .matchedGeometryEffect(id: "OIMback", in: wrapper.namespace, isSource: true)
Spacer()
OIMsendButton(isGoal: false, isFinal: false, enabled: enabled, action: sendAction)
.frame(width: 66, height: 66)
@@ -180,7 +180,7 @@ struct OIMView: View {
.opacity((isClosed || itsMe) ? 1.0 : 0.01)
.matchedGeometryEffect(id: itsMe ? (sending ? "OIMback" : "OIMnumber")
: String(index),
- in: wrapper.namespace,isSource: false)
+ in: wrapper.namespace, isSource: false)
.frame(width: size, height: size)
}
}
@@ -193,7 +193,7 @@ struct OIMView: View {
amountVal: $availableVal,
tappedVal: $tappedVal,
canEdit: false)
- .matchedGeometryEffect(id: "OIMline", in: wrapper.namespace,isSource: true)
+ .matchedGeometryEffect(id: "OIMline", in: wrapper.namespace, isSource: true)
.onTapGesture { close() }
// .zIndex(2) // make notes fly from topZ
Spacer()
diff --git a/TalerWallet1/Views/OIM/OIMpayView.swift b/TalerWallet1/Views/OIM/OIMpayView.swift
@@ -33,7 +33,7 @@ struct OIMpayView: View {
amountVal: $amountVal,
tappedVal: $tappedVal,
canEdit: true)
- .matchedGeometryEffect(id: "OIMline", in: wrapper.namespace,isSource: true)
+ .matchedGeometryEffect(id: "OIMline", in: wrapper.namespace, isSource: true)
Spacer()
}
#if DEBUG