This repository has been archived on 2022-03-12. You can view files and clone it, but cannot push or open issues or pull requests.

19 lines
474 B
C
Raw Normal View History

2021-04-02 02:24:13 +03:00
#import <UIKit/UIKit.h>
#import "RNCSafeAreaViewMode.h"
#import "RNCSafeAreaViewEdges.h"
NS_ASSUME_NONNULL_BEGIN
@interface RNCSafeAreaViewLocalData : NSObject
- (instancetype)initWithInsets:(UIEdgeInsets)insets mode:(RNCSafeAreaViewMode)mode edges:(RNCSafeAreaViewEdges)edges;
@property (atomic, readonly) UIEdgeInsets insets;
@property (atomic, readonly) RNCSafeAreaViewMode mode;
@property (atomic, readonly) RNCSafeAreaViewEdges edges;
@end
NS_ASSUME_NONNULL_END