commit 5efd66c9dfa5561c434f00af61ba6b6436342bca
parent c23c3873b0f6497bbe881c807bde560713dade76
Author: Marc Stibane <marc@taler.net>
Date: Sun, 13 Apr 2025 08:11:12 +0200
match source
Diffstat:
1 file changed, 4 insertions(+), 2 deletions(-)
diff --git a/TalerWallet1/Views/OIM/OIMcurrencyScroller.swift b/TalerWallet1/Views/OIM/OIMcurrencyScroller.swift
@@ -60,7 +60,8 @@ struct OIMcurrencyScroller: View {
pct: 0.0,
action: { tap(value: value) }
)
- .matchedGeometryEffect(id: value, in: wrapper.namespace, isSource: true)
+// .matchedGeometryEffect(id: value, in: wrapper.namespace, isSource: true)
+ .matchedGeometryEffect(id: String(value), in: wrapper.namespace, isSource: true)
}
ForEach(currency.bankCoins, id: \.self) { value in
OIMcurrencyButton(value: value,
@@ -70,7 +71,8 @@ struct OIMcurrencyScroller: View {
pct: 0.0,
action: { tap(value: value) }
)
- .matchedGeometryEffect(id: value, in: wrapper.namespace, isSource: true)
+// .matchedGeometryEffect(id: value, in: wrapper.namespace, isSource: true)
+ .matchedGeometryEffect(id: String(value), in: wrapper.namespace, isSource: true)
}
}.padding(.trailing, UIScreen.hasNotch ? UIScreen.horzInsets : 0) // ensure scrolling over the FaceID notch
}