SettingsView

struct SettingsView : View

SwiftUI View for the settings

  • The AppState model

    Declaration

    Swift

    @EnvironmentObject
    var appState: AppState { get }
  • The selected tab

    Declaration

    Swift

    @State
    var selection: Tabs { get nonmutating set }
  • The body of the View

    Declaration

    Swift

    var body: some View { get }
  • The tabs of the SettingsView

    See more

    Declaration

    Swift

    enum Tabs
  • The Playback settings

    See more

    Declaration

    Swift

    struct Playback : View
  • The SidebarView settings

    See more

    Declaration

    Swift

    struct Sidebar : View