yubioath-flutter/macos/Runner/AppDelegate.swift

11 lines
243 B
Swift
Raw Normal View History

2021-11-19 10:50:09 +03:00
import Cocoa
import FlutterMacOS
2024-08-13 16:22:22 +03:00
@main
2021-11-19 10:50:09 +03:00
class AppDelegate: FlutterAppDelegate {
override func applicationShouldTerminateAfterLastWindowClosed(_ sender: NSApplication) -> Bool {
2023-02-24 16:10:39 +03:00
// Keep app running if window closes
return false
2021-11-19 10:50:09 +03:00
}
}