-
Notifications
You must be signed in to change notification settings - Fork 135
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The transform style does not work in version 0.73.* #2038
Comments
Does it work with 0.72, so the regression started with 0.73? |
This problem started with 0.73, 0.72 and earlier versions work fine. |
Can confirm. I got the same issue! |
I don't have an ETA for a fix yet, but it is something we'd like to have fixed since it's one of the basic scenarios. |
I don't know if this is the same problem. In my development, I found that when the transform property translateY is used to offset an element, the rendering is visually effective. But when I inspect the element it doesn't work, and its event triggers are kept at the position before the offset. This problem occurs in 0.72.*.
|
Just a slight update, we're gonna try to pick this up in the next couple of weeks. I know that this is a pretty annoying regression in 0.73, and we recognize its importance. |
This change from upstream appears to be the culprit: 5f40f08#diff-603b7dc6b8a6a1475051de116973331aa452b0c76cfa4f36cd413ac859e5534c |
Environment
Steps to reproduce the bug
Adds transform style related properties to the element.
<View style={{ width: 50, height: 50, backgroundColor: 'red', opacity: 1, transform: [{scaleX: 2}, {translateX: 80}, {rotateX: '45deg'}], }}></View>
Expected Behavior
Correct rendering of transform style related properties.
Actual Behavior
The transform style-related properties are valid on iOS, but not on macOS.
Reproducible Demo
No response
Additional context
No response
The text was updated successfully, but these errors were encountered: