Skip to content

Commit 1d6ac09

Browse files
joevilchesfacebook-github-bot
authored andcommittedOct 17, 2024·
Fix animating background colors in View (#47101)
Summary: Pull Request resolved: #47101 See #47011 borders do not have this problem because they call `removeAllAnimations` on the layer after changing it, which is what I am doing here Changelog: [iOS] [fixed] - Fixed bug where background colors would sometimes animate when changing on Views Reviewed By: cipolleschi Differential Revision: D64493968 fbshipit-source-id: cf81549f21b124b67c6e7647c6ae827bfe80a9cf
1 parent d3fa580 commit 1d6ac09

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed
 

‎packages/react-native/React/Fabric/Mounting/ComponentViews/View/RCTViewComponentView.mm

+2
Original file line numberDiff line numberDiff line change
@@ -894,6 +894,8 @@ - (void)invalidateLayer
894894
_backgroundColorLayer.mask = maskLayer;
895895
_backgroundColorLayer.cornerRadius = 0;
896896
}
897+
898+
[_backgroundColorLayer removeAllAnimations];
897899
}
898900

899901
// borders

0 commit comments

Comments
 (0)
Please sign in to comment.