DetailView

struct DetailView : View

SwiftUI View for details of the selection (shared)

  • The KodiConnector model

    Declaration

    Swift

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

    Declaration

    Swift

    @Environment
    private var scene: SceneState { get }
  • The current detail selection

    Declaration

    Swift

    @State
    private var selection: Router { get nonmutating set }

Body of the View

  • The body of the View

    Declaration

    Swift

    var body: some View { get }

Fallback of the View

  • The fallback View

    Declaration

    Swift

    @ViewBuilder
    private var fallback: some View { get }
  • The fallback icon

    Declaration

    Swift

    @ViewBuilder
    private var fallbackIcon: some View { get }

Detail Wrapper