This commit is contained in:
2026-04-09 15:50:53 +02:00
parent 2d7cbcae5c
commit d9b88042cd
128 changed files with 4744 additions and 2 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
}
}