anyway/frontend/macos/Runner/AppDelegate.swift
Remy Moll 713e4a6671
Some checks failed
Test code / Test code (push) Failing after 41s
split into frontend and backend
2024-05-16 17:08:18 +02:00

10 lines
214 B
Swift

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