-
-
Notifications
You must be signed in to change notification settings - Fork 510
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
scrolling issues with two SliverMasonryGrid.count in the same CustomScrollView #335
Comments
Did you found any solution for this? |
No, I didn't. But I used different gridviews from the staggered package to
achieve the layout I wanted. SliverToBox adapter with AlignedGridView.count
and the and the SliverMasonaryGrid.count ..
I am limiting the list of the items being built though.
If you get a solution to this, please let me know
…On Mon, 19 Feb 2024, 17:00 kawi15, ***@***.***> wrote:
Did you found any solution for this?
—
Reply to this email directly, view it on GitHub
<#335 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AMKUN4SRQWHIUQOBYCOPB33YUNSIJAVCNFSM6AAAAABCRAVWZOVHI2DSMVQWIX3LMV43OSLTON2WKQ3PNVWWK3TUHMYTSNJSGYZDSOJUGQ>
.
You are receiving this because you authored the thread.Message ID:
***@***.***>
|
I used another package https://pub.dev/packages/masonry_grid. |
That's great. I hope they fix those issues sooner.
…On Wed, 21 Feb 2024, 4:35 pm kawi15, ***@***.***> wrote:
I used another package https://pub.dev/packages/masonry_grid.
It's has some performance issues but scrolling working properly.
—
Reply to this email directly, view it on GitHub
<#335 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AMKUN4Q72WSK3MYKXAIPS2LYUYA37AVCNFSM6AAAAABCRAVWZOVHI2DSMVQWIX3LMV43OSLTON2WKQ3PNVWWK3TUHMYTSNJWG44DSMBYGI>
.
You are receiving this because you authored the thread.Message ID:
***@***.***>
|
Have the same issue. Please, fix its |
I'm experiencing a scrolling issue on my device. When the second Here's my current workaround: I replaced the first SliverToBoxAdapter(
child: MasonryGridView.count(
shrinkWrap: true,
physics: const NeverScrollableScrollPhysics(),
crossAxisCount: 2,
padding: EdgeInsets.zero,
mainAxisSpacing: 8.w,
crossAxisSpacing: 8.w,
itemCount: childCount,
itemBuilder: (BuildContext context, int index) {
return item();
}
),
) |
There are scrolling issues when you add two SliverMasonryGrid.count in the same CustomScrollView Widget
The text was updated successfully, but these errors were encountered: