React-Native-ViewPager
React-Native-ViewPager copied to clipboard
how disable touch drag
i need disable drag to next slide . I using ref set _goToNextPage
set scrollEnabled ={false}
Apparently it changed to horizontalScroll={false} as of now. Needs documentation update.
As of Nov 2019, scrollEnabled ={false} only works.
horizontalScroll={false} is not working at all.
As of July 12, 2021, it seems that the solution that works is the combination of both answers:
For android operating system use horizontalScroll={false}
For iOs operating system use scrollEnabled ={false}
Edit: for better solution follow this answer: https://github.com/zbtang/React-Native-ViewPager/issues/116#issuecomment-365211148 I hope it helps!