Using v1.3.4. When showing a tooltip, it gets dismissed automatically when touching outside of it. However, there seems to be no way to not consume this touch event.
In my use case, I show a tooltip like "Swipe down to refresh". So, as a user I try to swipe but nothing happens - the touch event closes the tooltip and then nothing. Obviously, the touch event got consumed so I need to swipe a second time. This is a bit confusing.
Opt-in to not consume touch event
Perhaps this could be improved. In some scenarios, it is desirable to allow the touch event to continue routing. Something like:
.setConsumeTouchOutside(false)