You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
429 B
22 lines
429 B
#import <React/RCTBridge.h>
|
|
#import <React/RCTView.h>
|
|
#import <UIKit/UIKit.h>
|
|
|
|
#import "RNCSafeAreaViewEdges.h"
|
|
#import "RNCSafeAreaViewMode.h"
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@class RNCSafeAreaView;
|
|
|
|
@interface RNCSafeAreaView : RCTView
|
|
|
|
- (instancetype)initWithBridge:(RCTBridge *)bridge;
|
|
|
|
@property (nonatomic, assign) RNCSafeAreaViewMode mode;
|
|
@property (nonatomic, assign) RNCSafeAreaViewEdges edges;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|