fix(ios): animation of clipPath contents, fixes #1119

This commit is contained in:
Mikael Sand
2019-09-27 13:17:28 +03:00
parent bd7e492910
commit 8bb5b22de9
+1
View File
@@ -140,6 +140,7 @@
if ([node isKindOfClass:[RNSVGNode class]] && ![node isKindOfClass:[RNSVGMask class]]) {
CGAffineTransform transform = CGAffineTransformConcat(node.matrix, node.transforms);
CGPathAddPath(path, &transform, [node getPath:context]);
node.dirty = false;
}
return YES;
}];