flutter create --platforms=windows,macos,linux

This commit is contained in:
csf
2022-05-23 16:25:55 +08:00
parent 6a949b5f6a
commit beb11bd31c
49 changed files with 2714 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
}
}