You can use RawScrollbar instead and set the thumbColor to whatever color u like . Show activity on this post. Scroll bar uses the highlight color.. so just add ur desired scrollbar color in the highlightColor inside Theme in MaterialApp and you are done.
Read moreHow do I hide scrollbar in flutter Web?
You can use ScrollConfiguration widget to pass a spesific scroll behaviour to the widget tree . ScrollConfiguration( behavior: ScrollConfiguration. of(context). copyWith(scrollbars: false), child: ListView(…) )
Read moreHow do I make scrollbar disappear?
Add overflow: hidden; to hide both the horizontal and vertical scrollbar .
Read more