Permanently visible Scroll Bar for ScrollView (React Native)

后端 未结 3 1724
失恋的感觉
失恋的感觉 2021-01-04 01:16

I just found that there is no permanent Scroll bar for ScrollView. I went through all the documentation and google but I don\'t think it actually exists.

How do we

3条回答
  •  走了就别回头了
    2021-01-04 01:46

    ScrollView has a prop called persistentScrollbar.

    You can set the boolean to be true by adding persistentScrollbar={true} to make scrollbars visible permanently, even when they are not in use.

    This only works for Android.

    React Native's Official Documentation

提交回复
热议问题