This commit is contained in:
agra
2026-04-16 18:38:37 +03:00
parent 8ac7b5a5d5
commit 0fff294caf
41 changed files with 1740 additions and 46 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
}
}