Files
toaster/apps/macos/Runner/AppDelegate.swift
T
mars3142 46c8c38aa7
Test / test (push) Successful in 7m35s
initial commit
Signed-off-by: Peter Siegmund <developer@mars3142.org>
2026-04-18 14:06:56 +02:00

14 lines
311 B
Swift

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