Files
git-touch/macos/Runner/AppDelegate.swift
Shreyas Thirumalai acd608e230 add macos files (#90)
#69
2020-05-15 18:37:12 +08:00

10 lines
214 B
Swift

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