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