veilidchat/macos/Runner/AppDelegate.swift

10 lines
201 B
Swift
Raw Normal View History

2023-01-07 21:43:31 -05:00
import Cocoa
import FlutterMacOS
2024-08-06 22:00:10 -04:00
@main
2023-01-07 21:43:31 -05:00
class AppDelegate: FlutterAppDelegate {
override func applicationShouldTerminateAfterLastWindowClosed(_ sender: NSApplication) -> Bool {
return true
}
}