Initial commit

This commit is contained in:
2022-11-04 10:46:07 -04:00
commit 1c0ac122d0
183 changed files with 7167 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
}
}