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 = 0No easing — constant velocity.
public static readonly KeyboardEasing EaseIn = 1Slow start, fast end (accelerate).
public static readonly KeyboardEasing EaseOut = 2Fast start, slow end (decelerate). Typical for keyboard show on iOS.
public static readonly KeyboardEasing EaseInOut = 3Slow start and end, fast middle. Typical Android default.
