Skip to content

Commit ea4c3c7

Browse files
authored
Add shouldBeRecycled method to RNCSliderComponentView
1 parent c39f8df commit ea4c3c7

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

package/ios/RNCSliderComponentView.mm

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,10 @@ + (ComponentDescriptorProvider)componentDescriptorProvider
3131
return concreteComponentDescriptorProvider<RNCSliderComponentDescriptor>();
3232
}
3333

34+
+ (BOOL)shouldBeRecycled {
35+
return NO;
36+
}
37+
3438
- (instancetype)initWithFrame:(CGRect)frame
3539
{
3640
if (self = [super initWithFrame:frame]) {

0 commit comments

Comments
 (0)