Skip to content

Commit c03f84f

Browse files
authored
feat: add load method (#580)
1 parent 8998da2 commit c03f84f

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

ios/RNCPickerComponentView.mm

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,12 @@ + (ComponentDescriptorProvider)componentDescriptorProvider
2929
return concreteComponentDescriptorProvider<RNCPickerComponentDescriptor>();
3030
}
3131

32+
// Needed because of this: https://github.com/facebook/react-native/pull/37274
33+
+ (void)load
34+
{
35+
[super load];
36+
}
37+
3238
- (instancetype)initWithFrame:(CGRect)frame
3339
{
3440
if (self = [super initWithFrame:frame]) {

0 commit comments

Comments
 (0)