just_audio/ios/Classes/AudioPlayerPlugin.m

21 lines
719 B
Mathematica
Raw Normal View History

2019-11-25 14:50:21 +00:00
#import "AudioPlayerPlugin.h"
@implementation AudioPlayerPlugin
+ (void)registerWithRegistrar:(NSObject<FlutterPluginRegistrar>*)registrar {
FlutterMethodChannel* channel = [FlutterMethodChannel
methodChannelWithName:@"audio_player"
binaryMessenger:[registrar messenger]];
AudioPlayerPlugin* instance = [[AudioPlayerPlugin 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