ui: add macos client

This commit is contained in:
Simon Ding
2024-11-21 09:45:44 +08:00
parent 990da92b75
commit bec3b04705
31 changed files with 1553 additions and 6 deletions

View File

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