Skip to content

Commit

Permalink
ui: main view sf symbols
Browse files Browse the repository at this point in the history
  • Loading branch information
reez committed Aug 31, 2024
1 parent 56a2177 commit 8152cfd
Showing 1 changed file with 14 additions and 30 deletions.
44 changes: 14 additions & 30 deletions LDKNodeMonday/View/Home/BitcoinView.swift
Original file line number Diff line number Diff line change
Expand Up @@ -164,40 +164,24 @@ struct BitcoinView: View {

HStack {

Button {
Button(action: {
isSendSheetPresented = true
} label: {
HStack {
Image(systemName: "arrow.up")
.minimumScaleFactor(0.5)
Text("Send")
.lineLimit(1)
.minimumScaleFactor(0.5)
}
.frame(width: 100, height: 25)
.padding(.all, 8)
}) {
Image(systemName: "qrcode")
.font(.title)
.foregroundColor(.primary)
}
.buttonBorderShape(.capsule)
.buttonStyle(.borderedProminent)
.tint(viewModel.networkColor)
.padding(.horizontal)

Button {
Spacer()

Button(action: {
isReceiveSheetPresented = true
} label: {
HStack {
Image(systemName: "arrow.down")
Text("Receive")
.lineLimit(1)
.minimumScaleFactor(0.5)
}
.frame(width: 100, height: 25)
.padding(.all, 8)
}) {
Image(systemName: "qrcode.viewfinder")
.font(.title)
.foregroundColor(.primary)

}
.buttonBorderShape(.capsule)
.buttonStyle(.borderedProminent)
.tint(viewModel.networkColor)
.padding(.horizontal)

}
.padding()
Expand All @@ -210,7 +194,7 @@ struct BitcoinView: View {
Button(action: {
showingNodeIDView = true
}) {
Image(systemName: "person.circle.fill")
Image(systemName: "person.crop.circle.dashed.circle")
.font(.title)
.foregroundColor(.primary)
}
Expand Down

0 comments on commit 8152cfd

Please sign in to comment.