diff --git a/src/animation/AnimatedComponent.js b/src/animation/AnimatedComponent.js index 006968a2c0c..568abd04898 100644 --- a/src/animation/AnimatedComponent.js +++ b/src/animation/AnimatedComponent.js @@ -26,7 +26,7 @@ export default function AnimatedComponent(props: Props) { style, } = props; - const animatedValue = useRef(new Animated.Value(0)); + const animatedValue = useRef(new Animated.Value(visible === true ? fullValue : 0)); const animate = useCallback(() => { Animated.timing(animatedValue.current, {