enum AnimationCurve
Swift
enum AnimationCurve
Not documented.
Sources/LavaUI/Animation.swift:25
Cases
case linear
Not documented.
Sources/LavaUI/Animation.swift:26
case easeOut
Fast out, settling in — the right default for a press or hover, where the response should feel immediate and the settle should not.
Sources/LavaUI/Animation.swift:29
case easeInOut
Not documented.
Sources/LavaUI/Animation.swift:30
case spring(response: Double, dampingFraction: Double)
A damped harmonic response. response is the undamped period in
seconds; lower values react faster. Values below one for
dampingFraction overshoot, one is critically damped, and values above
one settle without overshoot.
Sources/LavaUI/Animation.swift:35