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.
This commit is contained in:
Arkadiusz Fal
2025-11-20 13:08:55 +01:00
parent a3747a0975
commit e723bb9147
2 changed files with 2 additions and 2 deletions

View File

@@ -126,7 +126,7 @@ struct AppTabNavigation: View {
LazyView(TrendingView()) LazyView(TrendingView())
} }
.tabItem { .tabItem {
Label("Trending", systemImage: "chart.bar.fill") Label("Trending", systemImage: "arrow.up.right.circle.fill")
.accessibility(label: Text("Trending")) .accessibility(label: Text("Trending"))
} }
.tag(TabSelection.trending) .tag(TabSelection.trending)

View File

@@ -103,7 +103,7 @@ struct Sidebar: View {
if visibleSections.contains(.trending) { if visibleSections.contains(.trending) {
NavigationLink(destination: LazyView(TrendingView()), tag: TabSelection.trending, selection: $navigation.tabSelection) { 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")) .accessibility(label: Text("Trending"))
} }
.id("trending") .id("trending")