Reputation: 107
So this listview is dynamically loaded from api, when I scroll on page (up/down) outside of listview it works perfectly, but when I scroll from inside listview I am unable to scroll on the page. Any ideas on what I can change?
Upvotes: 0
Views: 95
Reputation: 106
I think setting the primary property to false in the listview will solve your problem
Upvotes: 0
Reputation: 34
It seems you have used Nested ListView. Just declare:
ScrollController _scrollController = ScrollController();
And call _scrollController to both the properties of contoller in listviews.
Upvotes: 1