This commit is contained in:
Prerak Mann
2019-05-10 12:24:05 +05:30
commit 7f1c9c9e8c
78 changed files with 1954 additions and 0 deletions

View File

@@ -0,0 +1,4 @@
#import <Flutter/Flutter.h>
@interface NearbyConnectionsPlugin : NSObject<FlutterPlugin>
@end

View File

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