🌈 Create new beautiful Compose Gradients with our new wesite ->
Property

EaseOutElastic

!EaseOutElastic Curve

Source set: Common
public val EaseOutElastic: Easing = Easing { fraction ->
    val c4 = (2f * PI) / 3f

    return@Easing when (fraction) {
        0f -> 0f
        1f -> 1f
        else -> ((2.0f).pow(-10.0f * fraction) * sin((fraction * 10f - 0.75f) * c4) + 1f).toFloat()
    }
}

EaseOutElastic Curve