const slideUp = { transform: [ { translateY: this.state.animation.interpolate({ inputRange: [0.01,1], outputRange: [500, 0], extrapolate: "clamp", }), }, ], }; componentDidMount(){ Animated.timing(this.state.animation, { toValue: 1, duration: 300, useNativeDriver: true, }).start(); } constructor(props) { super(props); this.state = { animation: new Animated.Value(0), } } interpolate : 값의 변화를 계속 시..