Animated.Value
import { Animated } from 'react-native';
class App extends Component {
constructor(props) {
super(props);
this.state = {
animatedVal: new Animated.Value(0),
};
}
...
}Animated.ValueXY
new Animated.ValueXY({ x: 0, y: 0 })setValue
Last updated
Was this helpful?