You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
513 B
14 lines
513 B
import Flutter |
|
import UIKit |
|
|
|
public class SwiftArgon2FfiPlugin: NSObject, FlutterPlugin { |
|
public static func register(with registrar: FlutterPluginRegistrar) { |
|
let channel = FlutterMethodChannel(name: "argon2_ffi", binaryMessenger: registrar.messenger()) |
|
let instance = SwiftArgon2FfiPlugin() |
|
registrar.addMethodCallDelegate(instance, channel: channel) |
|
} |
|
|
|
public func handle(_ call: FlutterMethodCall, result: @escaping FlutterResult) { |
|
result("iOS " + UIDevice.current.systemVersion) |
|
} |
|
}
|
|
|