При использовании Animated.createAnimatedComponent(ScrollView) для создания анимированного ScrollView более не возможно использовать scrollTo.
const AnimatedScrollView = Animated.createAnimatedComponent(ScrollView);
<AnimatedScrollView ref={(ref) => this.list = ref}>
<View style={{height: 1000}} />
</AnimatedScrollView>
Вызов this.list.scrollTo({x: 0, y: 0}) дает следующую ошибку:
_this.list.scrollTo is not a function
Он отлично работает на обычном ScrollView. Есть ли способ решить это?