react-native-shared-element icon indicating copy to clipboard operation
react-native-shared-element copied to clipboard

Can't build on iOS with RN 0.80

Open pierroo opened this issue 5 months ago • 3 comments

RNSharedElementCornerRadii gives the error:

node_modules/react-native-shared-element/ios/RNSharedElementCornerRadii.m:77:77 Too few arguments to function call, expected 4, have 3

for this line:

CGPathRef path = RCTPathCreateWithRoundedRect(bounds, cornerInsets, NULL);

it should be:

CGPathRef path = RCTPathCreateWithRoundedRect(bounds, cornerInsets, NULL, NO);

Not like this library is maintained anyway, but if anyone passes by and needs the fix.

pierroo avatar Jul 08 '25 12:07 pierroo