From a3747a097561c86537b1bfb592d6095b38f15f80 Mon Sep 17 00:00:00 2001 From: Arkadiusz Fal Date: Thu, 20 Nov 2025 13:07:32 +0100 Subject: [PATCH] Change Popular icon to chart.bar.fill Replace arrow.up.right.circle.fill icon with chart.bar.fill for the Popular section across all navigation contexts (tab bar, sidebar, and view header). --- Shared/Navigation/AppTabNavigation.swift | 2 +- Shared/Navigation/Sidebar.swift | 2 +- Shared/Views/PopularView.swift | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Shared/Navigation/AppTabNavigation.swift b/Shared/Navigation/AppTabNavigation.swift index 12f6adc0..1c784ea2 100644 --- a/Shared/Navigation/AppTabNavigation.swift +++ b/Shared/Navigation/AppTabNavigation.swift @@ -115,7 +115,7 @@ struct AppTabNavigation: View { .toolbar { toolbarContent } } .tabItem { - Label("Popular", systemImage: "arrow.up.right.circle.fill") + Label("Popular", systemImage: "chart.bar.fill") .accessibility(label: Text("Popular")) } .tag(TabSelection.popular) diff --git a/Shared/Navigation/Sidebar.swift b/Shared/Navigation/Sidebar.swift index 8131055d..65840241 100644 --- a/Shared/Navigation/Sidebar.swift +++ b/Shared/Navigation/Sidebar.swift @@ -95,7 +95,7 @@ struct Sidebar: View { if visibleSections.contains(.popular), accounts.app.supportsPopular { NavigationLink(destination: LazyView(PopularView()), tag: TabSelection.popular, selection: $navigation.tabSelection) { - Label("Popular", systemImage: "arrow.up.right.circle") + Label("Popular", systemImage: "chart.bar.fill") .accessibility(label: Text("Popular")) } .id("popular") diff --git a/Shared/Views/PopularView.swift b/Shared/Views/PopularView.swift index df782c4e..11e23f7d 100644 --- a/Shared/Views/PopularView.swift +++ b/Shared/Views/PopularView.swift @@ -104,7 +104,7 @@ struct PopularView: View { } label: { HStack(spacing: 12) { HStack(spacing: 6) { - Image(systemName: "arrow.up.right.circle.fill") + Image(systemName: "chart.bar.fill") .foregroundColor(.primary) .imageScale(.small)