3

Can I create custom scrollbar look like this pic in react native.

enter image description here

Thank you

  • Does this answer your question? [How can i style the scroll indicator in react native scrollbar](https://stackoverflow.com/questions/50754284/how-can-i-style-the-scroll-indicator-in-react-native-scrollbar) – RowanX Nov 04 '20 at 18:50

1 Answers1

2

Finally I found the solution. use this package react-native-scroll-indicator

Here my code

<ScrollViewIndicator
    shouldIndicatorHide={false}
    flexibleIndicator={false}
    scrollIndicatorStyle={{ backgroundColor: 'pink' }}
    scrollIndicatorContainerStyle={{ backgroundColor: 'rgba(0, 0, 0, 0.1)' }}
>
    ...
</ScrollViewIndicator>

It only supports ScrollView right now. But in the next version, it should support FlatList.

Jamie Chapman
  • 4,229
  • 5
  • 29
  • 47