3 references to StartValue
Microsoft.Maui (3)
Animations\LerpingAnimation.cs (3)
83
var type =
StartValue
?.GetType() ?? EndValue?.GetType();
97
if (Lerp != null! &&
StartValue
!= null && EndValue != null)
98
CurrentValue = Lerp.Calculate?.Invoke(
StartValue
, EndValue, Progress);