Files
tripz-service/macos/Runner/AppDelegate.swift
Hamza-Ayed 2468e6466f 8/11/1
2024-08-11 10:59:50 +03:00

10 lines
214 B
Swift

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