StartView

struct StartView : View

SwiftUI View when starting Komodio (shared)

  • The KodiConnector model

    Declaration

    Swift

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

    Declaration

    Swift

    @Environment
    private var scene: SceneState { get }
  • The loading status of the View

    Declaration

    Swift

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

Start Details

  • SwiftUI View with details of the StartView

    See more

    Declaration

    Swift

    struct Details : View