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?
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?
By altering the physics property should do it
ListView(
physics: NeverScrollableScrollPhysics(),
children: <Widget>[
//your widget items here
],
),