mirror of
https://github.com/yattee/yattee.git
synced 2024-11-10 08:18:19 +00:00
33 lines
722 B
Swift
33 lines
722 B
Swift
import Defaults
|
|
import SwiftUI
|
|
|
|
struct VideosView: View {
|
|
@EnvironmentObject<NavigationState> private var navigationState
|
|
|
|
@State private var profile = Profile()
|
|
|
|
#if os(tvOS)
|
|
@Default(.layout) private var layout
|
|
#endif
|
|
|
|
var videos: [Video]
|
|
|
|
var body: some View {
|
|
VStack {
|
|
#if os(tvOS)
|
|
if layout == .cells {
|
|
VideosCellsView(videos: videos)
|
|
} else {
|
|
VideosListView(videos: videos)
|
|
}
|
|
#else
|
|
VideosCellsView(videos: videos)
|
|
#endif
|
|
}
|
|
#if os(macOS)
|
|
.background()
|
|
.frame(minWidth: 360)
|
|
#endif
|
|
}
|
|
}
|