We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f2a46b1 commit fc23784Copy full SHA for fc23784
React/Modules/RCTUIManager.m
@@ -816,7 +816,7 @@ - (void)_removeChildren:(NSArray<UIView *> *)children
816
NSString *property = deleteAnimation.property;
817
[deleteAnimation performAnimations:^{
818
if ([property isEqualToString:@"scaleXY"]) {
819
- removedChild.layer.transform = CATransform3DMakeScale(0, 0, 0);
+ removedChild.layer.transform = CATransform3DMakeScale(0.001, 0.001, 0.001);
820
} else if ([property isEqualToString:@"opacity"]) {
821
removedChild.layer.opacity = 0.0;
822
} else {
0 commit comments