diff --git a/IceCubesApp/App/Main/AppView.swift b/IceCubesApp/App/Main/AppView.swift index 63f50e47..628f827c 100644 --- a/IceCubesApp/App/Main/AppView.swift +++ b/IceCubesApp/App/Main/AppView.swift @@ -72,6 +72,7 @@ struct AppView: View { .tabItem { if userPreferences.showiPhoneTabLabel { tab.label + .environment(\.symbolVariants, tab == selectedTab ? .fill : .none) } else { Image(systemName: tab.iconName) } diff --git a/IceCubesApp/App/SideBarView.swift b/IceCubesApp/App/SideBarView.swift index dae2f927..7b72e4dd 100644 --- a/IceCubesApp/App/SideBarView.swift +++ b/IceCubesApp/App/SideBarView.swift @@ -182,6 +182,7 @@ private struct SideBarIcon: View { .font(.title2) .fontWeight(.medium) .foregroundColor(isSelected ? theme.tintColor : theme.labelColor) + .symbolVariant(isSelected ? .fill : .none) .scaleEffect(isHovered ? 0.8 : 1.0) .onHover { isHovered in withAnimation(.interpolatingSpring(stiffness: 300, damping: 15)) {