AppDelegate.swift 214 B

123456789
  1. import Cocoa
  2. import FlutterMacOS
  3. @NSApplicationMain
  4. class AppDelegate: FlutterAppDelegate {
  5. override func applicationShouldTerminateAfterLastWindowClosed(_ sender: NSApplication) -> Bool {
  6. return true
  7. }
  8. }