2025-08-24 16:24:21 -07:00
|
|
|
//
|
|
|
|
|
// kordophone2App.swift
|
|
|
|
|
// kordophone2
|
|
|
|
|
//
|
|
|
|
|
// Created by James Magahern on 8/24/25.
|
|
|
|
|
//
|
|
|
|
|
|
|
|
|
|
import SwiftUI
|
|
|
|
|
|
|
|
|
|
@main
|
|
|
|
|
struct KordophoneApp: App
|
2025-08-29 19:59:11 -06:00
|
|
|
{
|
2025-08-24 16:24:21 -07:00
|
|
|
var body: some Scene {
|
|
|
|
|
WindowGroup {
|
2025-08-29 19:59:11 -06:00
|
|
|
SplitView()
|
2025-08-24 16:24:21 -07:00
|
|
|
}
|
2025-09-10 14:41:24 -07:00
|
|
|
.commands {
|
|
|
|
|
TextEditingCommands()
|
|
|
|
|
}
|
|
|
|
|
|
2025-08-25 00:13:55 -07:00
|
|
|
Settings {
|
|
|
|
|
PreferencesView()
|
|
|
|
|
}
|
2025-08-24 16:24:21 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private func reportError(_ e: Error) {
|
|
|
|
|
// Just printing for now.
|
|
|
|
|
print("Error: \(e.localizedDescription)")
|
|
|
|
|
}
|
|
|
|
|
}
|