首页 > 解决方案 > 是否可以在本机反应中更改滚动条颜色

问题描述

我可以在 react native 中创建自定义滚动条,看起来像这张图片吗?

在此处输入图像描述

谢谢

标签: react-nativescrollviewscrollbarreact-native-scrollview

解决方案


最后我找到了解决方案。使用这个包 react-native-scroll-indicator

这是我的代码

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

推荐阅读