mirror of
https://github.com/status-im/react-native.git
synced 2025-01-09 17:15:54 +00:00
58661978a7
Summary: I'd like this ability as this has a tendency to get in the way of some of the more complex UI pieces I have. Disabling RCT_DEV entirely is too much for me. Closes https://github.com/facebook/react-native/pull/2451 Github Author: Tj <tfallon@mail.depaul.edu>
17 lines
438 B
Objective-C
17 lines
438 B
Objective-C
/**
|
|
* Copyright (c) 2015-present, Facebook, Inc.
|
|
* All rights reserved.
|
|
*
|
|
* This source code is licensed under the BSD-style license found in the
|
|
* LICENSE file in the root directory of this source tree. An additional grant
|
|
* of patent rights can be found in the PATENTS file in the same directory.
|
|
*/
|
|
|
|
#import "RCTBridgeModule.h"
|
|
|
|
@interface RCTDevLoadingView : NSObject <RCTBridgeModule>
|
|
|
|
+ (void)setEnabled:(BOOL)enabled;
|
|
|
|
@end
|