First commit

This commit is contained in:
aliakbar
2026-06-25 21:21:30 +03:30
parent 55d33677d9
commit 5c34cef2c3
147 changed files with 7197 additions and 0 deletions
@@ -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
}
}