Shamsudeen McHalwai
Shamsudeen McHalwai

Reputation: 107

Unable to scroll on page from listview

enter image description here

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

Answers (2)

Amjad
Amjad

Reputation: 106

I think setting the primary property to false in the listview will solve your problem

Upvotes: 0

Kartik
Kartik

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

Related Questions