Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions BDKSwiftExampleWallet/Resources/Localizable.xcstrings
Original file line number Diff line number Diff line change
Expand Up @@ -809,6 +809,9 @@
}
}
}
},
"Wallet only supports BIP86." : {

},
"Wallet Transaction Error" : {
"localizations" : {
Expand Down
24 changes: 18 additions & 6 deletions BDKSwiftExampleWallet/View/Receive/ReceiveView.swift
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,18 @@ struct ReceiveView: View {

VStack {

HStack {
Spacer()
Button {
viewModel.startNFCSession()
} label: {
Image(systemName: "wave.3.right")
.foregroundColor(.primary)
}
}
.padding(.trailing)
.padding(.top)

VStack(spacing: 8) {
Image("bitcoinsign.arrow.down")
.symbolRenderingMode(.hierarchical)
Expand Down Expand Up @@ -52,12 +64,12 @@ struct ReceiveView: View {
)
.padding()

Button {
viewModel.startNFCSession()
} label: {
Image(systemName: "wave.3.right")
.foregroundColor(.primary)
}
// Button {
// viewModel.startNFCSession()
// } label: {
// Image(systemName: "wave.3.right")
// .foregroundColor(.primary)
// }

HStack {
Button {
Expand Down
Loading