ExportFolderView
struct ExportFolderView: View
SwiftUI View
for a folder export
-
The app state
Declaration
Swift
private var appState = AppState(id: "FolderExport")
-
The observable
FileBrowser
classDeclaration
Swift
private var fileBrowser
-
Chord Display Options
Declaration
Swift
private var chordDisplayOptions = ChordDisplayOptions(defaults: AppSettings.defaults)
-
The current selected folder
Declaration
Swift
private var currentFolder: String? = ExportFolderView.exportFolderTitle
-
The PDF info
Declaration
Swift
private var pdfInfo = PDFBuild.DocumentInfo()
-
Present an export dialog
Declaration
Swift
private var exportFile: Bool = false
-
Bool if we are exporting
Declaration
Swift
private var exporting: Bool = false
-
Progress
Declaration
Swift
private var progress: Double = 0
-
The library as PDF
Declaration
Swift
private var pdf: Data?
-
The body of the
View
Declaration
Swift
var body: some View
-
Get the current selected export folder
Declaration
Swift
private static var exportFolderTitle: String?