mirror of
https://github.com/yattee/yattee.git
synced 2025-12-14 12:08:15 +00:00
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:
@@ -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)
|
||||||
|
|||||||
@@ -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")
|
||||||
|
|||||||
Reference in New Issue
Block a user