fluffychat/macos/Runner/AppDelegate.swift
Rafał Hirsch 760f65f5be
fix(macos): update dependencies to make the build work
This commit was generated mostly by running `flutter run -d macos` and then
`pod update` in the `macos/` directory after that failed.
2025-02-24 22:08:32 +01:00

13 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
}
}