mirror of
https://github.com/hiddify/hiddify-next.git
synced 2026-07-02 21:07:07 +08:00
11 lines
279 B
Swift
11 lines
279 B
Swift
import Cocoa
|
|
import FlutterMacOS
|
|
|
|
@NSApplicationMain
|
|
class AppDelegate: FlutterAppDelegate {
|
|
override func applicationShouldTerminateAfterLastWindowClosed(_ sender: NSApplication) -> Bool {
|
|
// https://github.com/leanflutter/window_manager/issues/214
|
|
return false
|
|
}
|
|
}
|