Files
Tanami_App/macos/Runner/AppDelegate.swift

10 lines
214 B
Swift
Raw Normal View History

2024-05-24 12:32:19 +05:30
import Cocoa
import FlutterMacOS
@NSApplicationMain
class AppDelegate: FlutterAppDelegate {
override func applicationShouldTerminateAfterLastWindowClosed(_ sender: NSApplication) -> Bool {
return true
}
}