Files
radio-otherway/mobile/macos/Runner/AppDelegate.swift
Fergal Moran fa348c8ab2 Add mobile app
2023-03-06 05:27:34 +00:00

10 lines
214 B
Swift

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