recyclerlistview
recyclerlistview copied to clipboard
how to disable scrolling in recyclerlistview
you can add scrollEnabled: false in the scrollViewProps
<RecyclerLitstView
...
scrollViewProps={{
scrollEnabled: false
}}
/>
not working
What do you mean it's not working.. It works for me..
use ref,
myRef.current.setNativeProps({
scrollEnabled: false
});
you can add scrollEnabled: false in the scrollViewProps
<RecyclerLitstView ... scrollViewProps={{ scrollEnabled: false }} />
Working for me.
<RecyclerListView scrollViewProps={{ showsHorizontalScrollIndicator: false, showsVerticalScrollIndicator: false, }} ... />
myRef.current?._scrollComponent?._scrollViewRef?.setNativeProps