Initial Commit

This commit is contained in:
2025-05-14 03:52:26 +02:00
commit ecd2446380
134 changed files with 5219 additions and 0 deletions

View File

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