More Animated
Interpolation
this.state = { animatedVal: new Animated.Value(0) };
const marginLeftAnimation = this.state.animatedValue.interpolate({
inputRange: [-300, -100, 0, 100, 101],
outputRange: [300, 0, 1, 0, 0],
});Composing Animations
Animated.Event
Last updated
Was this helpful?