flutter_web_plugins/packages/ccc_fplugin/ios/Classes/CccFpluginPlugin.m

21 lines
714 B
Objective-C

#import "CccFpluginPlugin.h"
@implementation CccFpluginPlugin
+ (void)registerWithRegistrar:(NSObject<FlutterPluginRegistrar>*)registrar {
FlutterMethodChannel* channel = [FlutterMethodChannel
methodChannelWithName:@"ccc_fplugin"
binaryMessenger:[registrar messenger]];
CccFpluginPlugin* instance = [[CccFpluginPlugin alloc] init];
[registrar addMethodCallDelegate:instance channel:channel];
}
- (void)handleMethodCall:(FlutterMethodCall*)call result:(FlutterResult)result {
if ([@"getPlatformVersion" isEqualToString:call.method]) {
result([@"iOS " stringByAppendingString:[[UIDevice currentDevice] systemVersion]]);
} else {
result(FlutterMethodNotImplemented);
}
}
@end