From e723bb91479a17eba8d06f2ab8f11041712a78d5 Mon Sep 17 00:00:00 2001 From: Arkadiusz Fal Date: Thu, 20 Nov 2025 13:08:55 +0100 Subject: [PATCH] Change Trending icon to arrow.up.right.circle.fill Replace chart.bar.fill icon with arrow.up.right.circle.fill for the Trending section across tab bar and sidebar navigation. --- Shared/Navigation/AppTabNavigation.swift | 2 +- Shared/Navigation/Sidebar.swift | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Shared/Navigation/AppTabNavigation.swift b/Shared/Navigation/AppTabNavigation.swift index 1c784ea2..3f443469 100644 --- a/Shared/Navigation/AppTabNavigation.swift +++ b/Shared/Navigation/AppTabNavigation.swift @@ -126,7 +126,7 @@ struct AppTabNavigation: View { LazyView(TrendingView()) } .tabItem { - Label("Trending", systemImage: "chart.bar.fill") + Label("Trending", systemImage: "arrow.up.right.circle.fill") .accessibility(label: Text("Trending")) } .tag(TabSelection.trending) diff --git a/Shared/Navigation/Sidebar.swift b/Shared/Navigation/Sidebar.swift index 65840241..aeb930b4 100644 --- a/Shared/Navigation/Sidebar.swift +++ b/Shared/Navigation/Sidebar.swift @@ -103,7 +103,7 @@ struct Sidebar: View { if visibleSections.contains(.trending) { NavigationLink(destination: LazyView(TrendingView()), tag: TabSelection.trending, selection: $navigation.tabSelection) { - Label("Trending", systemImage: "chart.bar") + Label("Trending", systemImage: "arrow.up.right.circle.fill") .accessibility(label: Text("Trending")) } .id("trending")