1
0
Fork 0
mirror of https://github.com/amigan/calls.git synced 2025-02-28 18:52:33 -05:00
calls/macos/Runner/AppDelegate.swift
2024-08-06 22:37:33 -04:00

9 lines
201 B
Swift

import Cocoa
import FlutterMacOS
@main
class AppDelegate: FlutterAppDelegate {
override func applicationShouldTerminateAfterLastWindowClosed(_ sender: NSApplication) -> Bool {
return true
}
}