FavouritesView

struct FavouritesView : View

SwiftUI View for Favorites (shared)

  • The KodiConnector model

    Declaration

    Swift

    @Environment
    private var kodi: KodiConnector { get }
  • The SceneState model

    Declaration

    Swift

    @Environment
    private var scene: SceneState { get }
  • The items in this view

    Declaration

    Swift

    @State
    private var items: [AnyKodiItem] { get nonmutating set }
  • The loading state of the View

    Declaration

    Swift

    @State
    private var status: ViewStatus { 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 }

Body of the View

  • The body of the View

    Declaration

    Swift

    var body: some View { get }

Content of the View

  • The content of the View

    Declaration

    Swift

    var content: some View { get }

Private functions

  • Get all movies from the library

    Declaration

    Swift

    private func getFavorites()