Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

scrollTo(y,x,animated ) is deprecated in react-native using ScrollView

Tags:

react-native

Hai while i am using ScrollView in react-native, I got some warning messages like scrollTo(y,x,animated) is deprecated, Below is the screenShot images for both android and IOS.

enter image description here

can you any one give me suggestions that how to solve this type of warnings i got this while using react-native version:0.21. Any help much appreciated

like image 225
Hussian Shaik Avatar asked Oct 24 '25 04:10

Hussian Shaik


1 Answers

They changed the syntax, now scrollTo gets only one Object argument. Use it like this now:

 scrollView.scrollTo({ y: newY, animated: true });
like image 103
Ivan Chernykh Avatar answered Oct 25 '25 19:10

Ivan Chernykh