Hi Hugo,
Try adding the following javascript in the OnInitialize of the screen you want to block the swipe behaviour:
document.addEventListener('touchstart', function(e) {
// is not near edge of view, exit
if (e.pageX > 10 && e.pageX < window.innerWidth - 10) return;
// prevent swipe to navigate gesture
e.preventDefault();
});
Let me know if it works!