1
0
mirror of https://github.com/nisrulz/flutter-examples.git synced 2025-11-08 20:50:04 +00:00
Files
flutter-examples/Plan_Tasks/Taskplanning_app/macos/Runner/AppDelegate.swift
Bharath-KumarReddy fb6f505cbc taskplanning_app
2023-10-15 11:41:52 +05:30

10 lines
214 B
Swift

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