Library allows you to create your custom "easings" without using any math.
Example:
Animation.animate(value, duration, new CubicBezier.Builder() .setPoint2(new Point(x, y)) .setPoint3(new Point(x, y)) .build(), safe );
Last updated 2 years ago