• Greg Spencer's avatar
    Desktop manual tests (#41247) · 9749f59c
    Greg Spencer authored
    This enables the manual tests to be built on a macOS desktop machine in desktop mode.
    
    I created the macos directory by using flutter create --macos
    9749f59c
AppDelegate.swift 214 Bytes
import Cocoa
import FlutterMacOS

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