Permanently visible Scroll Bar for ScrollView (React Native)

后端 未结 3 1739
失恋的感觉
失恋的感觉 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:48

    You can set showsHorizontalScrollIndicator={true} or showsVerticalScrollIndicator={true} to set the scroll indicator visible even when not scrolling.

    Usage:-

    render(){
        return(
            
                
                   ...
                
            
        );
    }
    

提交回复
热议问题