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