Gestures
This enhancer implement common gesture patterns using https://github.com/mbret/gesturx. Tap on edge or swipe to turn pages, pinch to change font scale, etc. It implements the most common gestures while trying to stay generic and configurable.
Getting Started
Connect the enhancer to your reader:
API
The API is under the gestures
namespace.
.settings
.settings
Read or update the enhancer settings.
.hooks
.hooks
.gestures$
.gestures$
Emits all gesture events that are recognized and processed by the enhancer. It will attach a boolean to let you know whether the gesture has been handled or not. Typically whether an action happened following this gesture (like a passthrough).
Imagine you want to show/hide a menu when the user click on the screen. The enhancer will trigger a navigation when the user tap on the left or right edge so you likely don't want to show the menu at the moment. However clicking outside of this range will have no effect. This is where you can intercept the gesture and show your menu.
Basically if you want to do something based on a gesture and make sure it does not happen with another effect this observable is a good candidate.
Last updated
Was this helpful?