Giter Site home page Giter Site logo

Comments (5)

caiombueno avatar caiombueno commented on June 2, 2024

hi @nandakista

I think this happens because a ListView doesn't provide its complete dimensions all at once. Instead, it only renders the elements that are currently visible.

On the other hand, when using SingleChildScrollView with Column, the entire item list is mounted and painted, even if only a few items are visible. The widget has defined dimensions, and that appears to be what the parameter wants.

If you want to know more about it, take a look at this StackOverflow discussion.

from infinite_scroll_pagination.

nandakista avatar nandakista commented on June 2, 2024

Hi @caiombueno
Thank you for the response and the explanation.

I tried building using a ListView without a builder like the code below

/// Still not work
...
firstPageProgressIndicatorBuilder: (context) {
    return ListView(
      children: [
        for (var i = 0; i < 20; i++)
          Text('[Sample] Loading shimmer item-$i'),
      ],
    );
}
...

But having the same error, isn't it true that if use a ListView without a builder it will also build all the widgets not just the visible ones (constructor ListView #1) ?

So for this problem, am I required to use SingleChildScrollView for the shimmer list? That's a kinda weird

from infinite_scroll_pagination.

caiombueno avatar caiombueno commented on June 2, 2024

As far as I understand, the default ListView doesn't build and render the whole list at once; instead, it creates the entire list in memory at once. I took this information from Ala Amarneh's answer in this discussion.

If you really want to use the ListView, you could wrap it in a SizedBox.

from infinite_scroll_pagination.

mllrr96 avatar mllrr96 commented on June 2, 2024

Had same issue, had to use column like that to mimic ListView.separated
Column( children: List.generate( 20, (index) => index.isEven ? shimmerWidget : const SizedBox(height: 8.0)))

from infinite_scroll_pagination.

EArminjon avatar EArminjon commented on June 2, 2024

Elegant solution : wrap your listview inside firstPageProgressIndicatorBuilder with a Sizedbox.shrink.

from infinite_scroll_pagination.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.