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
ViewDeclaration
Swift
var body: some View { get }
-
The content of the
ViewDeclaration
Swift
@ViewBuilder var content: some View { get }
-
Get all movies from the selected set
Declaration
Swift
private func getMoviesFromSet()
-
SwiftUI
See moreViewfor details of aMovieSetDeclaration
Swift
struct Details : View
View on GitHub
MovieSetView Structure Reference