stack_wallet/macos/Runner/AppDelegate.swift

14 lines
311 B
Swift
Raw Normal View History

2022-08-26 08:11:35 +00:00
import Cocoa
import FlutterMacOS
2024-07-26 08:34:00 +00:00
@main
2022-08-26 08:11:35 +00:00
class AppDelegate: FlutterAppDelegate {
override func applicationShouldTerminateAfterLastWindowClosed(_ sender: NSApplication) -> Bool {
return true
}
2024-07-26 08:34:00 +00:00
override func applicationSupportsSecureRestorableState(_ app: NSApplication) -> Bool {
return true
}
2022-08-26 08:11:35 +00:00
}