How to remove default ScrollBar from ListView in flutter?

Viewed 222

I've been using flutter for a very long time, but in recent updates, I've observed that Default ScrollBar have been added to ListView and some other widgets also.

Does anyone know how can I remove this default ScrollBar?

enter image description here

1 Answers

By altering the physics property should do it

ListView(
    physics: NeverScrollableScrollPhysics(),
    children: <Widget>[
        //your widget items here
    ],
),
Related