Back to API Reference
Enum

KeyboardEasing

Standard easing modes that map to the system keyboard animation curves.

Remarks

On iOS this corresponds to UIViewAnimationCurve. On Android API 30+ the system interpolator is approximated to the closest standard easing. On platforms without curve information (Android <30, WebGL) the value is EaseInOut.
public static readonly KeyboardEasing Linear = 0

No easing — constant velocity.

public static readonly KeyboardEasing EaseIn = 1

Slow start, fast end (accelerate).

public static readonly KeyboardEasing EaseOut = 2

Fast start, slow end (decelerate). Typical for keyboard show on iOS.

public static readonly KeyboardEasing EaseInOut = 3

Slow start and end, fast middle. Typical Android default.