diff --git a/releases/next/docs/animations.html b/releases/next/docs/animations.html index 6b7d8fcade1..432cb8e3f4a 100644 --- a/releases/next/docs/animations.html +++ b/releases/next/docs/animations.html @@ -62,7 +62,7 @@ Custom duration or even a delay before the animation s this.state.xPosition, { toValue: 100, - easing: Easing.back, + easing: Easing.back(), duration: 2000, } ).start();

Take a look at the Configuring animations section of the Animated API reference to learn more about all the config parameters supported by the built-in animations.

Composing animations #

Animations can be combined and played in sequence or in parallel.