relatica/macos/Runner/AppDelegate.swift

10 lines
201 B
Swift
Raw Normal View History

2022-11-03 03:25:29 +00:00
import Cocoa
import FlutterMacOS
2024-08-26 18:58:42 +00:00
@main
2022-11-03 03:25:29 +00:00
class AppDelegate: FlutterAppDelegate {
override func applicationShouldTerminateAfterLastWindowClosed(_ sender: NSApplication) -> Bool {
return true
}
}