@@ -211,8 +211,8 @@ class LargeList extends React.Component {
211211 this . contentSize = { width : 0 , height : 0 } ;
212212 this . lastScrollTime = 0 ;
213213 this . currentSection = 0 ;
214- this . minCellHeight = 100 ;
215- this . minSectionHeight = 100 ;
214+ this . minCellHeight = 40 ;
215+ this . minSectionHeight = 40 ;
216216 this . sizeConfirmed = false ;
217217 this . headerHeight = null ;
218218 this . footerHeight = null ;
@@ -513,7 +513,8 @@ class LargeList extends React.Component {
513513 } ) ;
514514 this . workRefs . forEach ( item => {
515515 if ( this . _compareIndexPath ( item . indexPath , this . topIndexPath ) < 0 ) {
516- this . freeRefs . splice ( 0 , 0 , item ) ;
516+ // this.freeRefs.splice(0, 0, item);
517+ this . freeRefs . push ( item ) ;
517518 }
518519 } ) ;
519520 this . freeRefs . forEach ( cell => {
@@ -627,7 +628,8 @@ class LargeList extends React.Component {
627628
628629 this . workRefs . forEach ( item => {
629630 if ( this . _compareIndexPath ( item . indexPath , this . bottomIndexPath ) > 0 ) {
630- this . freeRefs . splice ( 0 , 0 , item ) ;
631+ // this.freeRefs.splice(0, 0, item);
632+ this . freeRefs . push ( item ) ;
631633 }
632634 } ) ;
633635 this . freeRefs . forEach ( cell => {
@@ -1017,7 +1019,8 @@ class LargeList extends React.Component {
10171019 this . initVar ( ) ;
10181020 this . safeArea = { top : 0 , bottom : 0 } ;
10191021 this . workRefs . forEach ( cell => {
1020- this . freeRefs . splice ( 0 , 0 , cell ) ;
1022+ // this.freeRefs.splice(0, 0, cell);
1023+ this . freeRefs . push ( cell ) ;
10211024 } ) ;
10221025 this . freeRefs . forEach ( cell => {
10231026 cell . waitForRender = true ;
0 commit comments