feat: initial project setup - Komet Flutter app

This commit is contained in:
klockky
2026-03-12 18:54:09 +03:00
parent aeadc91faa
commit fc62650ec3
148 changed files with 4829 additions and 1 deletions
+13
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
}
}