diff --git a/docs/next/animated.html b/docs/next/animated.html index ccbf4b0a75b..0b143568c0b 100644 --- a/docs/next/animated.html +++ b/docs/next/animated.html @@ -58,9 +58,10 @@
Animations can also be chained together simply by setting the toValue of one animation to be another Animated.Value. See Tracking dynamic values in the Animations guide.
By default, if one animation is stopped or interrupted, then all other animations in the group are also stopped.
You can combine two animated values via addition, multiplication, division, or modulo to make a new animated value:
+You can combine two animated values via addition, subtraction, multiplication, division, or modulo to make a new animated value:
Animated.add()Animated.subtract()Animated.divide()Animated.modulo()Animated.multiply()timingspringaddsubtractdividemultiplymoduloCreates a new Animated value composed from two Animated values added together.
subtract()static subtract(a, b)
+
+Creates a new Animated value composed by subtracting the second Animated value from the first Animated value.
+divide()static divide(a, b)