nick / react-native-carousel

Carousel component for react-native
MIT License
458 stars 107 forks source link

scrollTo() needs to be changed as its using deprecated version #37

Closed Vani-gurnani closed 8 years ago

Vani-gurnani commented 8 years ago

this.refs.scrollView.scrollTo(0,activePage * width);

to this.refs.scrollView.scrollTo({x:0,y:activePage * width,animated:true});

mikelambert commented 8 years ago

This should be fixed now.