Solian/macos/Runner/AppDelegate.swift

10 lines
201 B
Swift
Raw Normal View History

2024-05-18 10:17:16 +00:00
import Cocoa
import FlutterMacOS
2024-08-10 10:24:47 +00:00
@main
2024-05-18 10:17:16 +00:00
class AppDelegate: FlutterAppDelegate {
override func applicationShouldTerminateAfterLastWindowClosed(_ sender: NSApplication) -> Bool {
return true
}
}