Skip to content

Commit f99cb14

Browse files
authored
feat: add load method (#523)
1 parent bc55fe4 commit f99cb14

File tree

2 files changed

+12
-0
lines changed

2 files changed

+12
-0
lines changed

ios/Fabric/RNCSafeAreaProviderComponentView.mm

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,12 @@ @implementation RNCSafeAreaProviderComponentView {
1919
BOOL _initialInsetsSent;
2020
}
2121

22+
// Needed because of this: https://github.com/facebook/react-native/pull/37274
23+
+ (void)load
24+
{
25+
[super load];
26+
}
27+
2228
- (instancetype)initWithFrame:(CGRect)frame
2329
{
2430
if (self = [super initWithFrame:frame]) {

ios/Fabric/RNCSafeAreaViewComponentView.mm

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,12 @@ @implementation RNCSafeAreaViewComponentView {
2323
__weak UIView *_Nullable _providerView;
2424
}
2525

26+
// Needed because of this: https://github.com/facebook/react-native/pull/37274
27+
+ (void)load
28+
{
29+
[super load];
30+
}
31+
2632
- (instancetype)initWithFrame:(CGRect)frame
2733
{
2834
if (self = [super initWithFrame:frame]) {

0 commit comments

Comments
 (0)