2025-11-16 11:25:27 +00:00
|
|
|
import Cocoa
|
|
|
|
|
import FlutterMacOS
|
|
|
|
|
|
2025-11-27 21:48:01 +00:00
|
|
|
@main
|
2025-11-16 11:25:27 +00:00
|
|
|
class AppDelegate: FlutterAppDelegate {
|
|
|
|
|
override func applicationShouldTerminateAfterLastWindowClosed(_ sender: NSApplication) -> Bool {
|
|
|
|
|
return true
|
|
|
|
|
}
|
2025-11-27 21:48:01 +00:00
|
|
|
|
|
|
|
|
override func applicationSupportsSecureRestorableState(_ app: NSApplication) -> Bool {
|
|
|
|
|
return true
|
|
|
|
|
}
|
2025-11-16 11:25:27 +00:00
|
|
|
}
|