Search code examples
react-nativescrollviewscrollbarreact-native-scrollview

Is it possible to change scrollbar color in react native


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

enter image description here

Thank you


Solution

  • 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.