Files
ything_radio/macos/Runner/AppDelegate.swift
2024-09-03 15:17:57 -04:00

10 lines
201 B
Swift

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