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 you make a scrollable in flutter?
We can make the text scrollable in flutter using these 2 widgets:
Read moreWhat is scrollable in flutter?
A ScrollView that creates custom scroll effects using slivers . DraggableScrollableSheet. A container for a Scrollable that responds to drag gestures by resizing the scrollable until a limit is reached, and then scrolling.
Read moreWhat do you mean by scroll bar?
Definition of scroll bar computers. : a narrow bar along the bottom or side of a window that one clicks on with a mouse to see parts of the window that are hidden .
Read moreHow do I make flutter Web scrollable?
To achieve the scroll requirements, we will do the following:
Read moreWhat is Scrollbar in flutter?
By default, scrollable widgets in Flutter don’t show a scrollbar. To add a scrollbar to a ScrollView, wrap the scroll view widget in a Scrollbar widget. Using this widget we can scroll a widget. The scrollbar allows the user to jump into the particular points and also shows how far the user reaches .
Read moreHow do I get rid of the Scrollbar in flutter?
The easiest and quickest way to achieve this is to set thickness: 0 on the Scrollbar widget . It’ll look something like this: Scrollbar( thickness: 0, child: … )
Read more