We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4c58532 commit 10d8a07Copy full SHA for 10d8a07
BDKSwiftExampleWallet/View/Receive/ReceiveView.swift
@@ -52,10 +52,6 @@ struct ReceiveView: View {
52
.padding()
53
54
HStack {
55
- Text(viewModel.address)
56
- .lineLimit(1)
57
- .truncationMode(.middle)
58
- .fontDesign(.monospaced)
59
Button {
60
UIPasteboard.general.string = viewModel.address
61
isCopied = true
@@ -66,6 +62,10 @@ struct ReceiveView: View {
66
62
}
67
63
} label: {
68
64
65
+ Text(viewModel.address)
+ .lineLimit(1)
+ .truncationMode(.middle)
+ .fontDesign(.monospaced)
69
withAnimation {
70
Image(
71
systemName: showCheckmark
0 commit comments