Added config files for MacOS

This commit is contained in:
Kazimierz Ciołek
2026-02-19 14:36:46 +01:00
parent f943e89430
commit 7e61ba430c
28 changed files with 1388 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
import Cocoa
import FlutterMacOS
@main
class AppDelegate: FlutterAppDelegate {
override func applicationShouldTerminateAfterLastWindowClosed(_ sender: NSApplication) -> Bool {
return true
}
override func applicationSupportsSecureRestorableState(_ app: NSApplication) -> Bool {
return true
}
}