暂无描述
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

AppDelegate.swift 214B

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. }