mirror of
https://github.com/yattee/yattee.git
synced 2024-11-13 01:28:22 +00:00
70c089e696
Fix environment objects Hide video player placeholder on tvOS Queue improvements
20 lines
403 B
Swift
20 lines
403 B
Swift
import Siesta
|
|
import SwiftUI
|
|
|
|
struct PlaylistVideosView: View {
|
|
let playlist: Playlist
|
|
|
|
init(_ playlist: Playlist) {
|
|
self.playlist = playlist
|
|
}
|
|
|
|
var body: some View {
|
|
PlayerControlsView {
|
|
VideosCellsVertical(videos: playlist.videos)
|
|
#if !os(tvOS)
|
|
.navigationTitle("\(playlist.title) Playlist")
|
|
#endif
|
|
}
|
|
}
|
|
}
|