union_ad_ssgf/ios/Classes/UnionAdSsgfPlugin.swift
2024-10-15 15:31:53 +08:00

20 lines
636 B
Swift

import Flutter
import UIKit
public class UnionAdSsgfPlugin: NSObject, FlutterPlugin {
public static func register(with registrar: FlutterPluginRegistrar) {
let channel = FlutterMethodChannel(name: "union_ad_ssgf_method", binaryMessenger: registrar.messenger())
let instance = UnionAdSsgfPlugin()
registrar.addMethodCallDelegate(instance, channel: channel)
}
public func handle(_ call: FlutterMethodCall, result: @escaping FlutterResult) {
switch call.method {
case "getPlatformVersion":
result("iOS " + UIDevice.current.systemVersion)
default:
result(FlutterMethodNotImplemented)
}
}
}