1
0
mirror of https://github.com/git-touch/git-touch synced 2024-12-16 10:20:55 +01:00
git-touch-android-ios-app/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
}
}