Browse Source

Updated colors and swapped icons.

translations_damus-localizations-en-us-xcloc-localized-contents-en-us-xliff--master_es_419
Ben Weeks 2 years ago
parent
commit
8161d55d05
  1. 11
      damus/Views/SideMenuView.swift

11
damus/Views/SideMenuView.swift

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

Loading…
Cancel
Save