From 7a0223aa15bfd6db63a2e810f25c1ad200ea75aa Mon Sep 17 00:00:00 2001 From: Ethan Pippin Date: Wed, 9 Oct 2024 18:50:16 -0600 Subject: [PATCH] Server Selection Menu Indicator (#1267) --- .../SelectUserView/Components/ServerSelectionMenu.swift | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/Swiftfin/Views/SelectUserView/Components/ServerSelectionMenu.swift b/Swiftfin/Views/SelectUserView/Components/ServerSelectionMenu.swift index 0c745794..a14f754b 100644 --- a/Swiftfin/Views/SelectUserView/Components/ServerSelectionMenu.swift +++ b/Swiftfin/Views/SelectUserView/Components/ServerSelectionMenu.swift @@ -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)