Song
struct Song
The structure of a song as shown in Chord Provider
-
The ID of the song
Declaration
Swift
var id: UUID = UUID()
-
The display options for the
Song
Declaration
Swift
var displayOptions = DisplayOptions()
-
The meta data about the
Song
Declaration
Swift
var metaData = MetaData()
-
An array of defined directives that only should be set once
Note
Used in the directive menus to disable once only directivesDeclaration
Swift
var definedMetaData: [ChordPro.Directive] = []
-
The sections of the song
Declaration
Swift
var sections = [Song.Section]()
-
The chords of the song
Declaration
Swift
var chords: [ChordDefinition] = []
-
Declaration
Swift
struct DisplayOptions: Codable, Equatable
-
Structure for meta data about the song
See moreDeclaration
Swift
struct MetaData
-
Declaration
Swift
struct RenderView: View
-
Declaration
Swift
struct Section: Identifiable