mirror of
https://github.com/status-im/react-native.git
synced 2025-01-29 02:35:41 +00:00
454aa02210
Summary: In some cases, the custom implementation of this prop is undesirable, so this allows to turn it off. Reviewed By: yungsters Differential Revision: D9759228 fbshipit-source-id: 4f61cd900c2da9046977c11a61606a4f5f961177
25 lines
465 B
Objective-C
25 lines
465 B
Objective-C
/**
|
|
* Copyright (c) Facebook, Inc. and its affiliates.
|
|
*
|
|
* 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/RCTView.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@class RCTBridge;
|
|
|
|
@interface RCTSafeAreaView : RCTView
|
|
|
|
- (instancetype)initWithBridge:(RCTBridge *)bridge;
|
|
|
|
@property (nonatomic, assign) BOOL emulateUnlessSupported;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|