mirror of
https://github.com/amigan/calls.git
synced 2024-11-22 04:49:49 -05:00
9 lines
201 B
Swift
9 lines
201 B
Swift
import Cocoa
|
|
import FlutterMacOS
|
|
|
|
@main
|
|
class AppDelegate: FlutterAppDelegate {
|
|
override func applicationShouldTerminateAfterLastWindowClosed(_ sender: NSApplication) -> Bool {
|
|
return true
|
|
}
|
|
}
|