See Also: Easing Members
Easing functions are applied to input values in the range [0,1]. The cubic easing functions are often considered to look most natural.
If developers wish to use their own easing functions, they should return a value of 0 for an input of 0 and a value of 1 for an input of 1 or the animation will have a jump.
The predefined Xamarin.Forms.Easing functions have the following forms:
| Member | Graph |
|---|---|
| Easing.BounceIn |
|
| Easing.BounceOut |
|
| Easing.CubicIn |
|
| Easing.CubicInOut |
|
| Easing.CubicOut |
|
| Easing.Linear |
|
| Easing.SinIn |
|
| Easing.SinInOut |
|
| Easing.SinOut |
|
| Easing.SpringIn |
|
| Easing.SpringOut |
|