useEffect(() => { if (isDrawerOpen == "open") { sv.value = 1 //withTiming(1) } else if (isDrawerOpen == 'closed') { sv.value = 0 //withTiming(0) } }, [isDrawerOpen]); const screenStyle = useAnimatedStyle(() => { const scaleY = interpolate(sv.value, [0, 1], [1, 0.86], { extrapolateRight: Extrapolate.CLAMP, }); const borderRadius = interpolate(sv.value, [0, 1], [1, 20], { extrapolateRight: Extrapolate.CLAMP, }); console.log("HERE CALLED : " + scaleY) return { transform: [ { scaleY, }, ], borderRadius: borderRadius, }; });**Hay 2 estados en la documentación oficial https://reactnavigation.org/docs/drawer-navigator/#drawercontent 'abierto' y 'cerrado' Quiero hacer una animación entre estos 2 estados (como en el cierre), por favor ayúdenme * *