mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2024-11-17 09:47:35 +00:00
20 lines
640 B
Swift
20 lines
640 B
Swift
|
import Cocoa
|
||
|
import FlutterMacOS
|
||
|
|
||
|
public class CwMwebPlugin: NSObject, FlutterPlugin {
|
||
|
public static func register(with registrar: FlutterPluginRegistrar) {
|
||
|
let channel = FlutterMethodChannel(name: "cw_mweb", binaryMessenger: registrar.messenger)
|
||
|
let instance = CwMwebPlugin()
|
||
|
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)
|
||
|
}
|
||
|
}
|
||
|
}
|