This commit is contained in:
SomnusVeritas
2023-10-02 14:05:17 +02:00
commit 15d621f9eb
128 changed files with 4880 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
}
}