relatica/macos/Runner/AppDelegate.swift

14 wiersze
311 B
Swift

2022-11-03 03:25:29 +00:00
import Cocoa
import FlutterMacOS
2024-08-26 18:58:42 +00:00
@main
2022-11-03 03:25:29 +00:00
class AppDelegate: FlutterAppDelegate {
override func applicationShouldTerminateAfterLastWindowClosed(_ sender: NSApplication) -> Bool {
return true
}
2024-12-21 15:24:38 +00:00
override func applicationSupportsSecureRestorableState(_ app: NSApplication) -> Bool {
return true
}
2022-11-03 03:25:29 +00:00
}