yattee/Apple TV/VideosView.swift

27 lines
634 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 {
@State private var profile = Profile()
2021-07-07 23:01:54 +00:00
2021-06-26 23:29:55 +00:00
@Default(.layout) var layout
@Default(.tabSelection) var tabSelection
@Default(.showingAddToPlaylist) var showingAddToPlaylist
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-06-26 23:50:32 +00:00
if layout == .cells {
2021-06-26 11:37:24 +00:00
VideosCellsView(videos: videos, columns: self.profile.cellsColumns)
2021-06-26 23:50:32 +00:00
} else {
VideosListView(videos: videos)
2021-06-11 21:40:35 +00:00
}
}
.fullScreenCover(isPresented: $showingAddToPlaylist) {
AddToPlaylistView()
}
2021-06-11 21:40:35 +00:00
}
}