Files
picshbj 84ba0a57c3 Initial commit: kiosk_webview Flutter app
Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
2026-08-25 12:05:04 +09:00

10 lines
214 B
Swift
Executable File

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