I set thumbHeight but it didn't work. I also want to add a minimum height configuration to thumb.
const scrollTrackOptions = useMemo<ScrollTrackOptions>(
() => ({
inverted: false,
fadeOutDelay: 1200,
hitSlop: 16,
scrollThrottle: 16,
styling: {
trackVisible: false,
thumbColor: 'rgba(0,0,0,0.35)',
thumbOpacity: 1,
trackWidth: 12,
thumbHeight: 56,
thumbBorderRadius: 4,
},
}),
[],
);
I set thumbHeight but it didn't work. I also want to add a minimum height configuration to thumb.