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.