recyclerlistview
Version:
The listview that you need and deserve. It was built for performance, uses cell recycling to achieve smooth scrolling.
26 lines • 986 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.BaseItemAnimator = void 0;
var BaseItemAnimator = /** @class */ (function () {
function BaseItemAnimator() {
}
BaseItemAnimator.prototype.animateWillMount = function (atX, atY, itemIndex) {
return undefined;
};
BaseItemAnimator.prototype.animateDidMount = function (atX, atY, itemRef, itemIndex) {
//no need
};
BaseItemAnimator.prototype.animateWillUpdate = function (fromX, fromY, toX, toY, itemRef, itemIndex) {
//no need
};
BaseItemAnimator.prototype.animateShift = function (fromX, fromY, toX, toY, itemRef, itemIndex) {
return false;
};
BaseItemAnimator.prototype.animateWillUnmount = function (atX, atY, itemRef, itemIndex) {
//no need
};
BaseItemAnimator.USE_NATIVE_DRIVER = false;
return BaseItemAnimator;
}());
exports.BaseItemAnimator = BaseItemAnimator;
//# sourceMappingURL=ItemAnimator.js.map