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
|
|
}
|
|
}
|