Is there any way to remove scrollbar from a SingleChildScrollView
and Listview.builder
? After the latest update, it appears automatically while scrolling (Platform Windows).
I've tried this solution:
NotificationListener<ScrollNotification>(
onNotification: (_) => true,
child: ...,
);
And also tried to wrap my widget tree in a Scrollbar widget with isAlwaysShown and controller, but both variants didn't work.