ffi macos

This commit is contained in:
ekibun
2020-09-24 00:53:02 +08:00
parent 29c2b04a36
commit 574c1acbe3
39 changed files with 2177 additions and 79 deletions

View File

@@ -0,0 +1,9 @@
import Cocoa
import FlutterMacOS
@NSApplicationMain
class AppDelegate: FlutterAppDelegate {
override func applicationShouldTerminateAfterLastWindowClosed(_ sender: NSApplication) -> Bool {
return true
}
}