Skip to content

Commit

Permalink
Adjust spacing on sidebar bottom buttons
Browse files Browse the repository at this point in the history
  • Loading branch information
praveenperera committed Dec 1, 2024
1 parent d844ba1 commit 46eb1fe
Showing 1 changed file with 23 additions and 21 deletions.
44 changes: 23 additions & 21 deletions ios/Cove/Views/SidebarView.swift
Original file line number Diff line number Diff line change
Expand Up @@ -113,32 +113,34 @@ struct SidebarView: View {

Spacer()

Divider()
.overlay(Color(.systemGray5))
.opacity(0.50)

HStack {
Button(action: { goTo(RouteFactory().newWalletSelect()) }) {
HStack(spacing: 20) {
Image(systemName: "wallet.bifold")
Text("Add Wallet")
VStack(spacing: 32) {
Divider()
.overlay(Color(.systemGray5))
.opacity(0.50)

HStack {
Button(action: { goTo(RouteFactory().newWalletSelect()) }) {
HStack(spacing: 20) {
Image(systemName: "wallet.bifold")
Text("Add Wallet")
}
.foregroundColor(.white)
}
.foregroundColor(.white)
}

Spacer()
}
Spacer()
}

HStack {
Button(action: { goTo(Route.settings) }) {
HStack(spacing: 22) {
Image(systemName: "gear")
Text("Settings")
HStack {
Button(action: { goTo(Route.settings) }) {
HStack(spacing: 22) {
Image(systemName: "gear")
Text("Settings")
}
.foregroundColor(.white)
}
.foregroundColor(.white)
}

Spacer()
Spacer()
}
}
}
}
Expand Down

0 comments on commit 46eb1fe

Please sign in to comment.