diff options
Diffstat (limited to 'aki/akiApp.swift')
| -rw-r--r-- | aki/akiApp.swift | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/aki/akiApp.swift b/aki/akiApp.swift index 4197e1d..68be104 100644 --- a/aki/akiApp.swift +++ b/aki/akiApp.swift @@ -11,7 +11,9 @@ import SwiftUI struct akiApp: App { var body: some Scene { WindowGroup { - ContentView() + MainView() + .frame(minWidth: 1024, maxWidth: .infinity, minHeight: 768, maxHeight: .infinity) } + .windowResizability(.contentSize) } } |
