SettingsView

struct SettingsView : View

SwiftUI View for the main navigation (shared)

  • Bool for the confirmation dialog

    Declaration

    Swift

    @State
    private var isPresentingConfirmReloadLibrary: Bool { get nonmutating set }
  • The SceneState model

    Declaration

    Swift

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

    Declaration

    Swift

    @Environment
    private var kodi: KodiConnector { get }

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 }

Configured hosts

  • The configured hosts

    Declaration

    Swift

    @ViewBuilder
    var configuredHosts: some View { get }

Actions for the selected hosts

  • Actions for the selected Kodi

    Declaration

    Swift

    var buttons: some View { get }

New hosts

  • The new hosts

    Declaration

    Swift

    @ViewBuilder
    var newHosts: some View { get }