1// Copyright 2015-present 650 Industries. All rights reserved.
2
3#import <EXDevLauncher/EXDevLauncherLoadingView.h>
4
5#if __has_include(<React/RCTDevLoadingViewProtocol.h>)
6
7#import <UIKit/UIKit.h>
8
9@implementation EXDevLauncherLoadingView
10
11+ (NSString *)moduleName
12{
13  return @"DevLoadingView";
14}
15
16+ (void)setEnabled:(BOOL)enabled {}
17- (void)showMessage:(NSString *)message color:(UIColor *)color backgroundColor:(UIColor *)backgroundColor {}
18- (void)showWithURL:(NSURL *)URL {}
19- (void)updateProgress:(RCTLoadingProgress *)progress {}
20- (void)hide {}
21
22@end
23
24#endif
25