Updated colors and swapped icons.

This commit is contained in:
Ben Weeks
2023-01-07 22:15:38 +00:00
parent 30151e14fa
commit 8161d55d05

View File

@@ -71,6 +71,7 @@ struct SideMenuView: View {
} }
Divider() Divider()
.padding(.trailing,40)
//NavigationView { //NavigationView {
let followers = FollowersModel(damus_state: damus_state, target: damus_state.pubkey) let followers = FollowersModel(damus_state: damus_state, target: damus_state.pubkey)
@@ -80,19 +81,19 @@ struct SideMenuView: View {
) { ) {
Label("Profile", systemImage: "person") Label("Profile", systemImage: "person")
.font(.title2) .font(.title2)
.foregroundColor(.accentColor) .foregroundColor(textColor())
} }
NavigationLink(destination: EmptyView()) { NavigationLink(destination: EmptyView()) {
Label("Relays", systemImage: "gear") Label("Relays", systemImage: "xserve")
.font(.title2) .font(.title2)
.foregroundColor(.accentColor) .foregroundColor(textColor())
} }
NavigationLink(destination: ConfigView(state: damus_state).environmentObject(user_settings)) { NavigationLink(destination: ConfigView(state: damus_state).environmentObject(user_settings)) {
Label("App Settings", systemImage: "xserve") Label("App settings", systemImage: "gear")
.font(.title2) .font(.title2)
.foregroundColor(.accentColor) .foregroundColor(textColor())
} }
Spacer() Spacer()