react-native-largelist
Advanced tools
Comparing version 1.2.3 to 1.2.4
@@ -214,4 +214,4 @@ /* | ||
this.currentSection = 0; | ||
this.minCellHeight = 100; | ||
this.minSectionHeight = 100; | ||
this.minCellHeight = 40; | ||
this.minSectionHeight = 40; | ||
this.sizeConfirmed = false; | ||
@@ -517,3 +517,4 @@ this.headerHeight = null; | ||
if (this._compareIndexPath(item.indexPath, this.topIndexPath) < 0) { | ||
this.freeRefs.splice(0, 0, item); | ||
// this.freeRefs.splice(0, 0, item); | ||
this.freeRefs.push(item); | ||
} | ||
@@ -632,3 +633,4 @@ }); | ||
if (this._compareIndexPath(item.indexPath, this.bottomIndexPath) > 0) { | ||
this.freeRefs.splice(0, 0, item); | ||
// this.freeRefs.splice(0, 0, item); | ||
this.freeRefs.push(item); | ||
} | ||
@@ -1023,3 +1025,4 @@ }); | ||
this.workRefs.forEach(cell => { | ||
this.freeRefs.splice(0, 0, cell); | ||
// this.freeRefs.splice(0, 0, cell); | ||
this.freeRefs.push(cell); | ||
}); | ||
@@ -1026,0 +1029,0 @@ this.freeRefs.forEach(cell => { |
@@ -130,3 +130,3 @@ /* | ||
let show = | ||
this.top !== -10000 && | ||
// this.top !== -10000 && | ||
section >= 0 && | ||
@@ -144,2 +144,3 @@ section < this.props.numberOfSections() && | ||
this.props.renderCell(this.indexPath.section, this.indexPath.row)} | ||
{show && this._renderItemSeparator()} | ||
</View> | ||
@@ -146,0 +147,0 @@ ); |
{ | ||
"name": "react-native-largelist", | ||
"version": "1.2.3", | ||
"version": "1.2.4", | ||
"private": false, | ||
@@ -5,0 +5,0 @@ "description": "The best performance large list component which is much better than SectionList for React Native.", |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
108776
1961