veilid/veilid-flutter/example/macos/Runner/AppDelegate.swift
Christien Rioux 3716c5db78 update dependencies
remove dysfunctional integration test
2024-08-15 14:21:45 -04:00

10 lines
201 B
Swift

import Cocoa
import FlutterMacOS
@main
class AppDelegate: FlutterAppDelegate {
override func applicationShouldTerminateAfterLastWindowClosed(_ sender: NSApplication) -> Bool {
return true
}
}