yattee/Shared/VideosView.swift

29 lines
625 B
Swift
Raw Normal View History

2021-06-26 23:29:55 +00:00
import Defaults
2021-06-11 21:40:35 +00:00
import SwiftUI
struct VideosView: View {
2021-07-18 22:32:46 +00:00
@EnvironmentObject<NavigationState> private var navigationState
@State private var profile = Profile()
2021-07-07 23:01:54 +00:00
2021-07-18 22:32:46 +00:00
#if os(tvOS)
2021-08-01 23:01:24 +00:00
@Default(.layout) private var layout
2021-07-11 20:52:49 +00:00
#endif
2021-07-07 22:39:18 +00:00
var videos: [Video]
2021-07-07 23:01:54 +00:00
2021-06-11 21:40:35 +00:00
var body: some View {
VStack {
2021-07-11 20:52:49 +00:00
#if os(tvOS)
if layout == .cells {
2021-08-01 23:01:24 +00:00
VideosCellsView(videos: videos)
2021-07-11 20:52:49 +00:00
} else {
VideosListView(videos: videos)
}
#else
2021-08-01 23:01:24 +00:00
VideosCellsView(videos: videos)
2021-07-11 20:52:49 +00:00
#endif
}
2021-06-11 21:40:35 +00:00
}
}