Server Selection Menu Indicator (#1267)
Some checks are pending
Build 🔨 / Build 🔨 (Swiftfin tvOS) (push) Waiting to run
Build 🔨 / Build 🔨 (Swiftfin) (push) Waiting to run

This commit is contained in:
Ethan Pippin 2024-10-09 18:50:16 -06:00 committed by GitHub
parent 071a1f98e1
commit 7a0223aa15
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -80,7 +80,7 @@ extension SelectUserView {
Color.tertiarySystemBackground
}
Group {
HStack {
switch serverSelection {
case .all:
Label("All Servers", systemImage: "person.2.fill")
@ -89,6 +89,10 @@ extension SelectUserView {
Label(server.name, systemImage: "server.rack")
}
}
Image(systemName: "chevron.up.chevron.down")
.foregroundStyle(.secondary)
.font(.subheadline.weight(.semibold))
}
.font(.body.weight(.semibold))
.foregroundStyle(Color.primary)