red pill
This commit is contained in:
4
ios/Classes/UxPlugin.h
Normal file
4
ios/Classes/UxPlugin.h
Normal file
@@ -0,0 +1,4 @@
|
||||
#import <Flutter/Flutter.h>
|
||||
|
||||
@interface UxPlugin : NSObject<FlutterPlugin>
|
||||
@end
|
||||
20
ios/Classes/UxPlugin.m
Normal file
20
ios/Classes/UxPlugin.m
Normal file
@@ -0,0 +1,20 @@
|
||||
#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
|
||||
Reference in New Issue
Block a user