react-native-refresh-loadmore-recyclerlistview
Version:
The listview that you need and deserve. It was built for performance, uses cell recycling to achieve smooth scrolling.
15 lines (14 loc) • 411 B
JavaScript
export class BaseItemAnimator {
animateWillMount(atX, atY, itemIndex) {
}
animateDidMount(atX, atY, itemRef, itemIndex) {
}
animateWillUpdate(fromX, fromY, toX, toY, itemRef, itemIndex) {
}
animateShift(fromX, fromY, toX, toY, itemRef, itemIndex) {
return false;
}
animateWillUnmount(atX, atY, itemRef, itemIndex) {
}
}
BaseItemAnimator.USE_NATIVE_DRIVER = true;