mirror of
https://github.com/flutter/flutter.git
synced 2025-06-03 00:51:18 +00:00
15 lines
518 B
Cheetah
15 lines
518 B
Cheetah
import Flutter
|
|
import UIKit
|
|
|
|
public class Swift{{pluginClass}}: NSObject, FlutterPlugin {
|
|
public static func register(with registrar: FlutterPluginRegistrar) {
|
|
let channel = FlutterMethodChannel(name: "{{projectName}}", binaryMessenger: registrar.messenger())
|
|
let instance = Swift{{pluginClass}}()
|
|
registrar.addMethodCallDelegate(instance, channel: channel)
|
|
}
|
|
|
|
public func handle(_ call: FlutterMethodCall, result: @escaping FlutterResult) {
|
|
result("iOS " + UIDevice.current.systemVersion)
|
|
}
|
|
}
|