feat(flutter): add macos run profile

This commit is contained in:
Liat Ben-Haim 2024-04-02 14:11:39 +02:00
parent 90d1d58c50
commit 88b50708c2
28 changed files with 1222 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
}
}