You can use `RawScrollbar` instead and set the `thumbColor` to whatever color you like.
child: RawScrollbar(
thumbColor: Colors.redAccent,
radius: Radius.circular(20),
thickness: 5,
child: //scrollable widget
)
You can use RawScrollbar instead and set the thumbColor to whatever color you like.
RawScrollbar(
thumbColor: Colors.redAccent,
radius: Radius.circular(20),
thickness: 5,
child: //scrollable widget
)