UNPKG

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.

13 lines 467 B
export default class LayoutProvider { constructor(getLayoutTypeForIndex, setLayoutForType) { this._getLayoutTypeForIndex = getLayoutTypeForIndex; this._setLayoutForType = setLayoutForType; } getLayoutTypeForIndex(index) { return this._getLayoutTypeForIndex(index); } setLayoutForType(type, dimension, index) { return this._setLayoutForType(type, dimension, index); } } //# sourceMappingURL=LayoutProvider.js.map