You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
318 B
17 lines
318 B
// |
|
// MinPlugin.m |
|
// Runner |
|
// |
|
// Created by 冯美坎 on 2021/6/18. |
|
// |
|
|
|
#import "MinPlugin.h" |
|
#import <Foundation/Foundation.h> |
|
#import <min-Swift.h> |
|
|
|
|
|
@implementation MinPlugin |
|
+ (void)registerWithRegistrar:(NSObject<FlutterPluginRegistrar>*)registrar { |
|
[SwiftMinPlugin registerWithRegistrar:registrar]; |
|
} |
|
@end
|
|
|