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 (12 loc) • 425 B
JavaScript
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);
}
}