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 44d0f52 commit b6bfd5dCopy full SHA for b6bfd5d
BDKSwiftExampleWallet/View/Activity/TransactionDetailView.swift
@@ -119,10 +119,6 @@ struct TransactionDetailView: View {
119
}
120
Spacer()
121
122
- Text(canonicalTx.transaction.computeTxid())
123
- .lineLimit(1)
124
- .truncationMode(.middle)
125
- Spacer()
126
Button {
127
UIPasteboard.general.string = canonicalTx.transaction.computeTxid()
128
isCopied = true
@@ -133,6 +129,9 @@ struct TransactionDetailView: View {
133
129
134
130
} label: {
135
131
HStack {
132
+ Text(canonicalTx.transaction.computeTxid())
+ .lineLimit(1)
+ .truncationMode(.middle)
136
withAnimation {
137
Image(
138
systemName: showCheckmark
0 commit comments