MoviesView
struct MoviesView : View
SwiftUI View for all Movies in the library (shared)
-
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 (movies + movie sets)
Declaration
Swift
@State private var collection: [AnyKodiItem] { get nonmutating set } -
The optional filter
Declaration
Swift
var filter: Parts.Filter -
The sorting
Declaration
Swift
@State private var sorting: List.Sort { get nonmutating set } -
The loading status of the
ViewDeclaration
Swift
@State private var status: ViewStatus { 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 library
Declaration
Swift
private func getMovies()
View on GitHub
MoviesView Structure Reference