How to disable changing pages on swipe? #541
-
I am developing an application based on the test-app. I want to disable changing pages on swipe and allow page navigation only on click events. The reason for this requirement is to enable text selection without the need for a long click. I attempted to comment out the following lines in the EpubNavigatorFragment, but it did not disable page swiping: Could you please advise on how to disable page changing via swipe? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
It's not possible out of the box, but I would try injecting some JavaScript to add a |
Beta Was this translation helpful? Give feedback.
It's not possible out of the box, but I would try injecting some JavaScript to add a
overflow: hidden
property onbody
orhtml
. You will probably need some anyway to support the text selection without a long click.