I have a Gridview inside a Rawscrollbar, and both of the scrollbar are showing when scrolling. what i want is just the rawscrollbarto be showing, what do i do?
@override
Widget build(BuildContext context) {
return Expanded(
child: RawScrollbar(
thumbColor: customAppColors.secondaryColor,
isAlwaysShown: true,
child: GridView.builder(
padding: EdgeInsets.all(10),
shrinkWrap: true,
gridDelegate: SliverGridDelegateWithFixedCrossAxisCountAndFixedHeight(
crossAxisCount: 3,
crossAxisSpacing: 3,
mainAxisSpacing: 3,
height: 170,
),
itemBuilder: (_, index) {
return Card();
},
itemCount: list.length,
),
),
);
}