f3411280e9
* Enhance getSystemDevice API on macOS with Broader Default Services Filter * Update docs * Update darwin/Classes/UniversalBlePlugin.swift Co-authored-by: Foti Dim <foti@navideck.com> * Reorder fields * Use ScanFilter ui for getting system devices --------- Co-authored-by: Foti Dim <fdimanidis@gmail.com> Co-authored-by: Foti Dim <foti@navideck.com>
14 lines
311 B
Swift
14 lines
311 B
Swift
import Cocoa
|
|
import FlutterMacOS
|
|
|
|
@main
|
|
class AppDelegate: FlutterAppDelegate {
|
|
override func applicationShouldTerminateAfterLastWindowClosed(_ sender: NSApplication) -> Bool {
|
|
return true
|
|
}
|
|
|
|
override func applicationSupportsSecureRestorableState(_ app: NSApplication) -> Bool {
|
|
return true
|
|
}
|
|
}
|