jsdf / react-native-refreshable-listview

Deprecated. A pull-to-refresh ListView which shows a loading spinner while your data reloads
1.38k stars 168 forks source link

2.0.0beta4 #53

Open hezheop opened 8 years ago

hezheop commented 8 years ago

the scrollToCompat.js has a little bug, that is
function scrollToCompat(scrollResponder, y, x, animated = false) { if (isLegacyReactNative()) { scrollResponder.scrollTo(y, x, animated) } else { scrollResponder.scrollTo({x, y, animated}) } } 'animate' to 'animated',because the official doc need {x:x,y:y,animated:true}