commit 4d8abc67e853a69278223c3552046930e74fcfe9
parent c9ab50396d9a25e74c6cd70140e6c6a15201f062
Author: Marc Stibane <marc@taler.net>
Date: Sun, 19 Nov 2023 23:31:00 +0100
fixup ScrollVStack
Diffstat:
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/TalerWallet1/Views/Peer2peer/P2PReadyV.swift b/TalerWallet1/Views/Peer2peer/P2PReadyV.swift
@@ -36,7 +36,7 @@ struct P2PReadyV: View {
let _ = Self._printChanges()
let _ = symLog.vlog() // just to get the # to compare it with .onAppear & onDisappear
#endif
- ScrollView { VStack {
+ Group {
if let transactionId {
TransactionDetailView(stack: stack.push(),
transactionId: transactionId,
@@ -53,7 +53,7 @@ struct P2PReadyV: View {
} else {
WithdrawProgressView(message: "Loading...")
}
- } } // ScrollVStack
+ }
.navigationTitle(navTitle)
.onAppear {
DebugViewC.shared.setViewID(VIEW_P2P_READY, stack: stack.push())