mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2024-11-01 09:57:46 +00:00
15 lines
510 B
Swift
15 lines
510 B
Swift
|
import Flutter
|
||
|
import UIKit
|
||
|
|
||
|
public class SwiftCwMoneroPlugin: NSObject, FlutterPlugin {
|
||
|
public static func register(with registrar: FlutterPluginRegistrar) {
|
||
|
let channel = FlutterMethodChannel(name: "cw_monero", binaryMessenger: registrar.messenger())
|
||
|
let instance = SwiftCwMoneroPlugin()
|
||
|
registrar.addMethodCallDelegate(instance, channel: channel)
|
||
|
}
|
||
|
|
||
|
public func handle(_ call: FlutterMethodCall, result: @escaping FlutterResult) {
|
||
|
result("iOS " + UIDevice.current.systemVersion)
|
||
|
}
|
||
|
}
|