17 lines
316 B
Mathematica
17 lines
316 B
Mathematica
![]() |
#import "RNCSafeAreaViewLocalData.h"
|
||
|
|
||
|
@implementation RNCSafeAreaViewLocalData
|
||
|
|
||
|
- (instancetype)initWithInsets:(UIEdgeInsets)insets mode:(RNCSafeAreaViewMode)mode edges:(RNCSafeAreaViewEdges)edges
|
||
|
{
|
||
|
if (self = [super init]) {
|
||
|
_insets = insets;
|
||
|
_mode = mode;
|
||
|
_edges = edges;
|
||
|
}
|
||
|
|
||
|
return self;
|
||
|
}
|
||
|
|
||
|
@end
|