flutter_staggered_grid_view icon indicating copy to clipboard operation
flutter_staggered_grid_view copied to clipboard

How to create children on demand?

Open zhangzhaojun opened this issue 2 years ago • 5 comments

I need to create children on demand, but which grid layouts is appropriate?

  1. Staggered Grid Layout
  2. Masonry Grid Layout
  3. Quilted Grid Layout ...

zhangzhaojun avatar Oct 28 '22 14:10 zhangzhaojun

Hi, what do you by "on demand"? As in infinite scrolling? If it's the case, you'll need to use a sliver based layout (which exclude the Staggered since it's not based on slivers). Then the question is more about what is the desired arrangement.

letsar avatar Nov 01 '22 09:11 letsar

@letsar Hi, I'm in need of a infinite scrolling Masonry layout, is MasonryGridView.custom() ok for it? I can't find a paginated widget, not sure how to achieve the infinite scrolling with Masonry, thanks!

xmany avatar Nov 06 '22 04:11 xmany

I need to create children on demand, but which grid layouts is appropriate?

  1. Staggered Grid Layout
  2. Masonry Grid Layout
  3. Quilted Grid Layout ...

@zhangzhaojun Hi, have you found a solution? thanks :)

xmany avatar Feb 13 '23 22:02 xmany

I need to create children on demand, but which grid layouts is appropriate?

  1. Staggered Grid Layout
  2. Masonry Grid Layout
  3. Quilted Grid Layout ...

@zhangzhaojun Hi, have you found a solution? thanks :)

Masonry, it meets my requirements.

zhangzhaojun avatar Feb 14 '23 01:02 zhangzhaojun

I need to create children on demand, but which grid layouts is appropriate?

  1. Staggered Grid Layout
  2. Masonry Grid Layout
  3. Quilted Grid Layout ...

@zhangzhaojun Hi, have you found a solution? thanks :)

Masonry, it meets my requirements.

@zhangzhaojun How to use Masonry to create children on demand? because it seems every masonry interface require you to provide the exact number of children in advance ?

xmany avatar Feb 14 '23 04:02 xmany