mirror of
https://github.com/rive-app/rive-flutter.git
synced 2025-08-24 00:26:17 +08:00
15 lines
497 B
Swift
15 lines
497 B
Swift
import Flutter
|
|
import UIKit
|
|
|
|
public class SwiftRivePlugin: NSObject, FlutterPlugin {
|
|
public static func register(with registrar: FlutterPluginRegistrar) {
|
|
let channel = FlutterMethodChannel(name: "rive", binaryMessenger: registrar.messenger())
|
|
let instance = SwiftRivePlugin()
|
|
registrar.addMethodCallDelegate(instance, channel: channel)
|
|
}
|
|
|
|
public func handle(_ call: FlutterMethodCall, result: @escaping FlutterResult) {
|
|
result("iOS " + UIDevice.current.systemVersion)
|
|
}
|
|
}
|