mirror of
https://github.com/status-im/react-native.git
synced 2025-01-10 17:45:59 +00:00
bec97dc243
Reviewed By: mmmulani Differential Revision: D7201691 fbshipit-source-id: b5f74351a9be7e6e9a7fc7145a09ba9854efc002
23 lines
581 B
Objective-C
23 lines
581 B
Objective-C
/**
|
|
* Copyright (c) 2015-present, Facebook, Inc.
|
|
*
|
|
* This source code is licensed under the MIT license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
*/
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
#import <React/RCTBridgeModule.h>
|
|
|
|
@class RCTLoadingProgress;
|
|
|
|
@interface RCTDevLoadingView : NSObject <RCTBridgeModule>
|
|
|
|
+ (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
|