Files
modal_progress_hud_nsn/ios/Classes/ModalProgressHudNsnPlugin.m
Phani Pavan K 56f5210712 Initial Commit
2021-02-18 15:11:05 +05:30

16 lines
656 B
Objective-C

#import "ModalProgressHudNsnPlugin.h"
#if __has_include(<modal_progress_hud_nsn/modal_progress_hud_nsn-Swift.h>)
#import <modal_progress_hud_nsn/modal_progress_hud_nsn-Swift.h>
#else
// Support project import fallback if the generated compatibility header
// is not copied when this plugin is created as a library.
// https://forums.swift.org/t/swift-static-libraries-dont-copy-generated-objective-c-header/19816
#import "modal_progress_hud_nsn-Swift.h"
#endif
@implementation ModalProgressHudNsnPlugin
+ (void)registerWithRegistrar:(NSObject<FlutterPluginRegistrar>*)registrar {
[SwiftModalProgressHudNsnPlugin registerWithRegistrar:registrar];
}
@end