mirror of
https://github.com/yattee/yattee.git
synced 2024-12-13 13:50:32 +05:30
45 lines
1.4 KiB
Swift
45 lines
1.4 KiB
Swift
import SwiftUI
|
|
|
|
struct ContentView: View {
|
|
@ObservedObject private var state = AppState()
|
|
@StateObject private var trendingState = TrendingState()
|
|
|
|
@State private var tabSelection = TabSelection.popular
|
|
|
|
var body: some View {
|
|
NavigationView {
|
|
TabView(selection: $tabSelection) {
|
|
SubscriptionsView(tabSelection: $tabSelection)
|
|
.tabItem { Text("Subscriptions") }
|
|
.tag(TabSelection.subscriptions)
|
|
|
|
PopularVideosView(tabSelection: $tabSelection)
|
|
.tabItem { Text("Popular") }
|
|
.tag(TabSelection.popular)
|
|
|
|
if state.showingChannel {
|
|
ChannelView(tabSelection: $tabSelection)
|
|
.tabItem { Text("\(state.channel) Channel") }
|
|
.tag(TabSelection.channel)
|
|
}
|
|
|
|
TrendingView(tabSelection: $tabSelection)
|
|
.tabItem { Text("Trending") }
|
|
.tag(TabSelection.trending)
|
|
|
|
SearchView(tabSelection: $tabSelection)
|
|
.tabItem { Image(systemName: "magnifyingglass") }
|
|
.tag(TabSelection.search)
|
|
}
|
|
}
|
|
.environmentObject(state)
|
|
.environmentObject(trendingState)
|
|
}
|
|
}
|
|
|
|
struct ContentView_Previews: PreviewProvider {
|
|
static var previews: some View {
|
|
ContentView()
|
|
}
|
|
}
|