diff --git a/docs/next/animated.html b/docs/next/animated.html index fc294be6b89..c83b9726553 100644 --- a/docs/next/animated.html +++ b/docs/next/animated.html @@ -113,7 +113,7 @@ // Will change fadeAnim value to 1 in 5 seconds Animated.timing(fadeAnim, { toValue: 1, - duration: 2000 + duration: 5000 }).start(); }; @@ -121,7 +121,7 @@ // Will change fadeAnim value to 0 in 5 seconds Animated.timing(fadeAnim, { toValue: 0, - duration: 2000 + duration: 5000 }).start(); }; @@ -171,7 +171,7 @@ export default App;