make user row a button

This commit is contained in:
Ethan Pippin 2022-01-07 08:18:17 -07:00
parent 27ccd5533b
commit fafed8091a
1 changed files with 10 additions and 6 deletions

View File

@ -35,13 +35,17 @@ struct SettingsView: View {
Form {
Section(header: EmptyView()) {
HStack {
Text("User")
Spacer()
Text(viewModel.user.username)
.foregroundColor(.jellyfinPurple)
Button {
} label: {
HStack {
Text("User")
Spacer()
Text(viewModel.user.username)
.foregroundColor(.jellyfinPurple)
}
}
.focusable()
Button {
settingsRouter.route(to: \.serverDetail)