ListView.builder(
physics: ClampingScrollPhysics(), // <----
// ...
// For not showing the scroll bar just add the Scroll configuration
// And add the behavior below
ScrollConfiguration(
behavior: ScrollConfiguration.of(context).copyWith(scrollbars: false),
child: ListView(...),
),