Files
ux/ios/Classes/UxPlugin.m
agrapine 810d060d44 red pill
2019-08-07 15:37:44 +01:00

21 lines
673 B
Objective-C

#import "UxPlugin.h"
@implementation UxPlugin
+ (void)registerWithRegistrar:(NSObject<FlutterPluginRegistrar>*)registrar {
FlutterMethodChannel* channel = [FlutterMethodChannel
methodChannelWithName:@"ux"
binaryMessenger:[registrar messenger]];
UxPlugin* instance = [[UxPlugin 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