When I try to swipe left/right my app content also scrolls vertically creating messy UX. Is there a way to prevent it?
This is how I handle swipe
// angular directive
link: function(scope, element, attrs) {
$ionicGesture.on('swiperight', function(){console.log("swiped");}, element );
}
FOREWORD: This solution was entirely rephrased after ensuring compatibility with both ios and android environments; comments below may no longer apply; any feedback is welcome.
YES, there is a way to prevent app content from scrolling when you swipe horizontally: by combining an angularjs
tapDetector
directive with ionic$ionicScrollDelegate
service.We will also need to detect the swipe using very fast dom events detection (
mousedown
/touchstart
,mousemove
/touchmove
,mouseup
/touchend
); it is necessary because$ionicGesture
event listener detects the swipe after the scroll has been done: detection for swipe in ionic is to slow for our purpose.The
tapDetector
directive is placed on body like so:And here is the code for the directive:
When you touch the screen (preparation for swipe), the coordinates of touch are set (startX, startY) and
isDown
is set to true.When you start swiping, we need to determine whether swipe is horizontal or vertical. We are only interested in horizontal swipes:
deltaX
is the difference (delta) between original X and current X;deltaY
is the difference (delta) between original Y and current Y;We got an horizontal swipe!
Now the swipe has been detected fast enough, all that is left to be done is to dynamically prevent the scroll:
and in the HTML:
<ion-content delegate-handle="mainScroll">
After scroll is complete, we must un-freeze (thaw?) the scroll:
This was tested with iPad 2 and Android Galaxy S4
Almost forgot: here is a working pen (courtesy of sMr)
Currently there is no API from ionic team to do that, but i temporary made a monkey patch and feature request. https://github.com/driftyco/ionic/issues/2703