UpNextView
struct UpNextView : View
SwiftUI View
for next Episode of TV shows that are not completed (shared)
-
The KodiConnector model
Declaration
Swift
@Environment private var kodi: KodiConnector { get }
-
The SceneState model
Declaration
Swift
@Environment private var scene: SceneState { get }
-
The Episodes in this view
Declaration
Swift
@State private var episodes: [Video.Details.Episode] { get nonmutating set }
-
The optional selected Episode
Declaration
Swift
@State private var selectedEpisode: Video.Details.Episode? { get nonmutating set }
-
The loading state of the View
Declaration
Swift
@State private var status: ViewStatus { get nonmutating set }
-
The opacity of the View
Declaration
Swift
@State private var opacity: Double { get nonmutating set }
-
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 getUnwatchedEpisodes()