We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Bug when using transform animated values in this way
<Circle translateYDriver={translateY} translateXDriver={translateX} /> const Circle = styled(Animated.View)( ({ translateXDriver, translateYDriver }) => ({ transform: [{ translateX: translateXDriver }, { translateY: translateYDriver }] }) )
Error: Invariant Violation: Attempt to get native tag from node not marked as "native"
Invariant Violation: Attempt to get native tag from node not marked as "native"
But when i use them directly everything works fine
<Circle style={{ transform: [{ translateX: translateXDriver }, { translateY: translateYDriver }] }} />
It works fine also if i use opacity native driver
opacity
The text was updated successfully, but these errors were encountered:
Would the second style (direct usage) work for you or does this need an urgent fix?
Sorry, something went wrong.
This one works, i use it right now.
No branches or pull requests
Bug when using transform animated values in this way
Error:
Invariant Violation: Attempt to get native tag from node not marked as "native"
But when i use them directly everything works fine
It works fine also if i use
opacity
native driverThe text was updated successfully, but these errors were encountered: