GoPro
GoPro

Reputation: 728

Turn Off Scrollable feature of Listview.builder

I want to use ListView.builder because of its itemBuilder feature. But I want to turn the scrollable feature off as it makes my app hard to use, as I end up scrolling only the widgets made using ListView.builder, instead of the entire screen. Thus, only a certain widget of screen scrolls, instead of the complete screen, making it a bad user experience.

Upvotes: 5

Views: 5852

Answers (1)

Abel Mekonnen
Abel Mekonnen

Reputation: 1915

physics: new NeverScrollableScrollPhysics() use this in the listview builder. The listview builder will not scroll

Upvotes: 6

Related Questions