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
ripple effect not working i have tried many times but not showing any animation.
The text was updated successfully, but these errors were encountered:
The order of the drawing is wrong in onDraw of SpotlightView, you have to flip the shape and effect draw like this:
if (currentTarget != null && currentShapeAnimator != null) { currentTarget.shape.draw( canvas = canvas, point = currentTarget.anchor, value = currentShapeAnimator.animatedValue as Float, paint = shapePaint ) } if (currentTarget != null && currentEffectAnimator != null && currentShapeAnimator != null && !currentShapeAnimator.isRunning) { currentTarget.effect.draw( canvas = canvas, point = currentTarget.anchor, value = currentEffectAnimator.animatedValue as Float, paint = effectPaint ) }
Sorry, something went wrong.
No branches or pull requests
ripple effect not working i have tried many times but not showing any animation.
The text was updated successfully, but these errors were encountered: