Skip to content
This repository has been archived by the owner on Jun 8, 2024. It is now read-only.

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
sou1maker committed Jun 17, 2022
1 parent fceeb63 commit 611c3da
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion lib/src/internals/slivers.dart
Original file line number Diff line number Diff line change
Expand Up @@ -453,7 +453,10 @@ class RenderSliverLoading extends RenderSliverSingleBoxAdapter {
if (active) {
// consider reverse loading and HideAlways==loadStyle
geometry = SliverGeometry(
scrollExtent: !_hasLayoutExtent! || !_computeIfFull(constraints) ? 0 : layoutExtent,
scrollExtent:
!_hasLayoutExtent! || (!_computeIfFull(constraints) && mode != LoadStatus.noMore)
? 0
: layoutExtent,
paintExtent: paintedChildSize,
// this need to fix later
paintOrigin: computePaintOrigin(
Expand Down

0 comments on commit 611c3da

Please sign in to comment.