react-native-shared-element
react-native-shared-element copied to clipboard
Can't build on iOS with RN 0.80
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.