23 lines
536 B
Objective-C
23 lines
536 B
Objective-C
// Copyright 2015-present 650 Industries. All rights reserved.
|
|
|
|
#import <EXDevMenu/DevClientNoOpLoadingView.h>
|
|
|
|
#if __has_include(<React/RCTDevLoadingViewProtocol.h>)
|
|
|
|
@implementation DevClientNoOpLoadingView
|
|
|
|
+ (NSString *)moduleName
|
|
{
|
|
return @"DevLoadingView";
|
|
}
|
|
|
|
+ (void)setEnabled:(BOOL)enabled {}
|
|
- (void)showMessage:(NSString *)message color:(UIColor *)color backgroundColor:(UIColor *)backgroundColor {}
|
|
- (void)showWithURL:(NSURL *)URL {}
|
|
- (void)updateProgress:(RCTLoadingProgress *)progress {}
|
|
- (void)hide {}
|
|
|
|
@end
|
|
|
|
#endif
|