Agrego updater app

This commit is contained in:
Pablo
2026-08-22 19:09:38 -03:00
parent 2d0797e627
commit 11e36bd6c2
60 changed files with 3942 additions and 0 deletions
@@ -0,0 +1,16 @@
import Cocoa
import FlutterMacOS
@main
class AppDelegate: FlutterAppDelegate {
override func applicationShouldTerminateAfterLastWindowClosed(_ sender: NSApplication) -> Bool {
return true
}
// Ver comentario en el AppDelegate de flutter_soma_app:
// desactiva la restauración de ventana, que puede dejar la ventana sin
// pintar el primer frame en lanzamientos repetidos desde la misma ruta.
override func applicationSupportsSecureRestorableState(_ app: NSApplication) -> Bool {
return false
}
}