mnemo_cards/mnemo_cards_backend/macos/Runner/AppDelegate.swift

14 lines
311 B
Swift
Raw Permalink Normal View History

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
}