-
Notifications
You must be signed in to change notification settings - Fork 107
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
support nested scroll view #88
base: master
Are you sure you want to change the base?
Conversation
Hi @henrichen, Could you please kindly review my changes when you have time? Thanks :) |
Hi, I try your branch to create a bidirectional lazy load list like this #89 I create a gist where you can enable a disable the center key, and you can see that only highlight work, but the scroll to not work when the center key is enable. how can I keep the scroll to index behavior while have the center key? or maybe do you know other way to create a list that append items to the top of the list by preserving the scroll, the solution that I used is from flutter/flutter#21541 (comment) thank you |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It worked very well in lazy-loading with two SliverLists in reverse mode
Maybe you can try using the flutter_scrollview_observer package : ) |
I tried with two SliverList + center key And please could you add in the description - that is a very basic library without support SliverList etc not for serious projects |
Hi!
I did some small changes to support nested scroll view, i.e. scrollable parent with non-scrollable list view children. Also added a demo in the sample app.
Please kindly help to review and let me know if it is inappropriate, thank you!
Some related issues: #22 #23 #49 #89