2021-07-11 20:52:49 +00:00
|
|
|
import Defaults
|
|
|
|
import SwiftUI
|
|
|
|
|
|
|
|
struct AppTabNavigation: View {
|
2021-07-19 21:27:18 +00:00
|
|
|
@State private var tabSelection: TabSelection = .subscriptions
|
2021-07-11 20:52:49 +00:00
|
|
|
|
|
|
|
var body: some View {
|
|
|
|
TabView(selection: $tabSelection) {
|
|
|
|
NavigationView {
|
|
|
|
SubscriptionsView()
|
|
|
|
}
|
|
|
|
.tabItem {
|
2021-08-25 22:12:59 +00:00
|
|
|
Label("Subscriptions", systemImage: "star.circle.fill")
|
2021-07-11 20:52:49 +00:00
|
|
|
.accessibility(label: Text("Subscriptions"))
|
|
|
|
}
|
|
|
|
.tag(TabSelection.subscriptions)
|
|
|
|
|
|
|
|
NavigationView {
|
2021-07-27 22:40:04 +00:00
|
|
|
PopularView()
|
2021-07-11 20:52:49 +00:00
|
|
|
}
|
|
|
|
.tabItem {
|
|
|
|
Label("Popular", systemImage: "chart.bar")
|
|
|
|
.accessibility(label: Text("Popular"))
|
|
|
|
}
|
|
|
|
.tag(TabSelection.popular)
|
|
|
|
|
|
|
|
NavigationView {
|
|
|
|
TrendingView()
|
|
|
|
}
|
|
|
|
.tabItem {
|
|
|
|
Label("Trending", systemImage: "chart.line.uptrend.xyaxis")
|
|
|
|
.accessibility(label: Text("Trending"))
|
|
|
|
}
|
|
|
|
.tag(TabSelection.trending)
|
|
|
|
|
|
|
|
NavigationView {
|
|
|
|
PlaylistsView()
|
|
|
|
}
|
|
|
|
.tabItem {
|
|
|
|
Label("Playlists", systemImage: "list.and.film")
|
|
|
|
.accessibility(label: Text("Playlists"))
|
|
|
|
}
|
|
|
|
.tag(TabSelection.playlists)
|
|
|
|
|
|
|
|
NavigationView {
|
|
|
|
SearchView()
|
|
|
|
}
|
|
|
|
.tabItem {
|
|
|
|
Label("Search", systemImage: "magnifyingglass")
|
|
|
|
.accessibility(label: Text("Search"))
|
|
|
|
}
|
|
|
|
.tag(TabSelection.search)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|