Are you sure?
Do you want to delete “Ripple Effect” permanently? You will not be able to undo this action.
Rectangle(color="navy")
circle = Circle(width=5, height=5, color="midnightblue")
grow = 40
with animation(duration=2):
circle.width = grow
circle.height = grow
circle.color = "navy"
circle = Circle(width=5, height=5, color="darkblue")
grow = 100
with animation(duration=2):
circle.width = grow
circle.height = grow
circle.color = "navy"