ente/auth/macos/Runner/AppDelegate.swift

10 lines
215 B
Swift
Raw Normal View History

2022-11-01 06:13:06 +00:00
import Cocoa
import FlutterMacOS
@NSApplicationMain
class AppDelegate: FlutterAppDelegate {
override func applicationShouldTerminateAfterLastWindowClosed(_ sender: NSApplication) -> Bool {
2024-03-23 13:48:30 +00:00
return false
2022-11-01 06:13:06 +00:00
}
}