2021-06-19 23:41:19 +08:00
|
|
|
import Flutter
|
|
|
|
import UIKit
|
|
|
|
|
2023-01-08 12:10:53 +08:00
|
|
|
public class SwiftAppFlowyBackendPlugin: NSObject, FlutterPlugin {
|
2021-06-19 23:41:19 +08:00
|
|
|
public static func register(with registrar: FlutterPluginRegistrar) {
|
2023-01-08 12:10:53 +08:00
|
|
|
let channel = FlutterMethodChannel(name: "appflowy_backend", binaryMessenger: registrar.messenger())
|
|
|
|
let instance = SwiftAppFlowyBackendPlugin()
|
2021-06-19 23:41:19 +08:00
|
|
|
registrar.addMethodCallDelegate(instance, channel: channel)
|
|
|
|
}
|
|
|
|
|
|
|
|
public func handle(_ call: FlutterMethodCall, result: @escaping FlutterResult) {
|
|
|
|
result("iOS " + UIDevice.current.systemVersion)
|
|
|
|
}
|
|
|
|
|
|
|
|
public static func dummyMethodToEnforceBundling() {
|
|
|
|
link_me_please()
|
|
|
|
}
|
|
|
|
}
|