mac os example (#19)

This commit is contained in:
Hiroshi Horie
2021-10-20 05:19:44 +09:00
committed by GitHub
parent 4d62487f0f
commit 9366db0dde
34 changed files with 1407 additions and 21 deletions
+9
View File
@@ -0,0 +1,9 @@
import Cocoa
import FlutterMacOS
@NSApplicationMain
class AppDelegate: FlutterAppDelegate {
override func applicationShouldTerminateAfterLastWindowClosed(_ sender: NSApplication) -> Bool {
return true
}
}