rightPosition] = useState(new Animated.Value (0))
const mooveLR = () => {
Animated.timing(
rightPosition({toValue: 100,duration: 3000}).start()
)
}
const mooveRL = () => {
Animated.timing(
rightPosition({toValue: 0,duration: 3000}).start()
)
}
right === 0 ? mooveLR () : mooveRL ()
<Animated.Image
style={[styles.animatedImg], rightPosition(right)}
source={require('./../img/transportGrey.png')}
/>
TypeError: Cannot read properties of undefined (reading 'start')
.start() не там вызываете. Animated.timing(...).start()
точно. не досмотрела но теперь другая ошибка TypeError: Cannot read properties of undefined (reading 'onComplete')
Обсуждают сегодня