mirror of
https://gitlab.com/veilid/veilid.git
synced 2024-10-01 01:26:08 -04:00
20 lines
639 B
Swift
20 lines
639 B
Swift
import Cocoa
|
|
import FlutterMacOS
|
|
|
|
public class VeilidPlugin: NSObject, FlutterPlugin {
|
|
public static func register(with registrar: FlutterPluginRegistrar) {
|
|
let channel = FlutterMethodChannel(name: "veilid", binaryMessenger: registrar.messenger)
|
|
let instance = VeilidPlugin()
|
|
registrar.addMethodCallDelegate(instance, channel: channel)
|
|
}
|
|
|
|
public func handle(_ call: FlutterMethodCall, result: @escaping FlutterResult) {
|
|
switch call.method {
|
|
case "getPlatformVersion":
|
|
result("macOS " + ProcessInfo.processInfo.operatingSystemVersionString)
|
|
default:
|
|
result(FlutterMethodNotImplemented)
|
|
}
|
|
}
|
|
}
|