MovieSetView
struct MovieSetView : View
SwiftUI View
for all Movies in a Movie Set (shared)
-
The movie set
Declaration
Swift
let movieSet: Video.Details.MovieSet
-
The KodiConnector model
Declaration
Swift
@Environment private var kodi: KodiConnector { get }
-
The SceneState model
Declaration
Swift
@Environment private var scene: SceneState { get }
-
The collection in this view
Declaration
Swift
@State private var collection: [AnyKodiItem] { get nonmutating set }
-
The sorting
Declaration
Swift
@State private var sorting: List.Sort { get nonmutating set }
-
The body of the
View
Declaration
Swift
var body: some View { get }
-
The content of the
View
Declaration
Swift
@ViewBuilder var content: some View { get }
-
Get all movies from the selected set
Declaration
Swift
private func getMoviesFromSet()
-
SwiftUI
See moreView
for details of aMovieSet
Declaration
Swift
struct Details : View