StartView

struct StartView : View

SwiftUI View for the start

  • The AppState model

    Declaration

    Swift

    @EnvironmentObject
    var appState: AppState { get }
  • The KodiConnector model

    Declaration

    Swift

    @EnvironmentObject
    var kodi: KodiConnector { get }
  • Rotate the record

    Declaration

    Swift

    @State
    private var rotate: Bool { get nonmutating set }
  • The record animation

    Declaration

    Swift

    var foreverAnimation: Animation { get }
  • The body of the View

    Declaration

    Swift

    var body: some View { get }
  • View when no hst is configured

    Declaration

    Swift

    var noHostConfigured: some View { get }
  • View for actions for the selected host

    Declaration

    Swift

    var hostActions: some View { get }