This commit is contained in:
marcoabat
2023-08-05 01:08:27 +02:00
commit bcd249a8d9
128 changed files with 4873 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
}
}