File tree Expand file tree Collapse file tree 1 file changed +4
-3
lines changed
Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -315,7 +315,7 @@ export default class UltimateListView extends Component {
315315
316316 return (
317317 < View style = { styles . paginationView } >
318- < Text style = { { alignSelf : 'center' } } >
318+ < Text style = { styles . allLoadedText } >
319319 { this . props . allLoadedText }
320320 </ Text >
321321 </ View >
@@ -388,7 +388,7 @@ export default class UltimateListView extends Component {
388388 return this . paginationWaitingView ( this . onPaginate ) ;
389389 } else if ( this . state . paginationStatus === PaginationStatus . waiting && this . props . autoPagination === true ) {
390390 return this . paginationWaitingView ( ) ;
391- } else if ( this . state . paginationStatus === PaginationStatus . allLoaded ) {
391+ } else if ( this . getRows ( ) . length !== 0 && this . state . paginationStatus === PaginationStatus . allLoaded ) {
392392 return this . paginationAllLoadedView ( ) ;
393393 }
394394
@@ -501,7 +501,8 @@ const styles = StyleSheet.create({
501501 alignItems : 'center'
502502 } ,
503503 allLoadedText : {
504- alignSelf : 'center'
504+ alignSelf : 'center' ,
505+ color : '#bfbfbf'
505506 } ,
506507 gridItem : {
507508 overflow : 'hidden' ,
You can’t perform that action at this time.
0 commit comments