MacOS support

This commit is contained in:
Ryan Heise 2020-04-07 01:02:57 +10:00
parent 5446a6f611
commit c833bd2d3b
51 changed files with 2004 additions and 436 deletions

View file

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