Files
PotatoMessenger/client/macos/Runner/AppDelegate.swift
fegor101 6f9c7f95bf initializate client, server, shared
- initializated base structure of server
 - initializated base structure of client
 - initializated base structure of shared(lib for client and server)
2026-04-03 22:25:31 +03: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
}
}