ToolbarView

struct ToolbarView : View

SwiftUI View for the toolbar

  • The song

    Declaration

    Swift

    @Binding
    var song: Song { get nonmutating set }
  • The scene state

    Declaration

    Swift

    @EnvironmentObject
    private var sceneState: SceneState { get }
  • Bool to show the editor or not

    Declaration

    Swift

    @SceneStorage
    var showEditor: Bool { get nonmutating set }
  • Bool to show the chords or not

    Declaration

    Swift

    @SceneStorage
    var showChords: Bool { get nonmutating set }
  • The body of the View

    Declaration

    Swift

    var body: some View { get }
  • SwiftUI View with a slider to zoom the content

    See more

    Declaration

    Swift

    struct ScaleSlider : View
  • SwiftUI View with optional player buttons

    See more

    Declaration

    Swift

    struct PlayerButtons : View
  • SwiftUI View for the folder selector

    See more

    Declaration

    Swift

    struct FolderSelector : View