Files
kalkulator/macos/Runner/AppDelegate.swift
for-solutions.com 869dd771c9
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
Initial commit
2026-02-06 21:42:17 +01: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
}
}