Move flutter app into root of repo

This commit is contained in:
2026-02-20 19:44:40 -06:00
parent 9f0342ba1a
commit 5f43ff3d4c
138 changed files with 262 additions and 759 deletions

View File

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