Sliding direction of NavigationManager in TouchKit

navigationManager.navigateTo(component)

let the new component slide in from right. Is it somehow possible to let it sometimes slide in from the left?

I tried to overwrite navigateTo() and navigateBack() and changed the direction object handed over to the NavigationEvent. But it didn’t had any effect.

Try calling navigationManager.setPreviousComponent(component), then navigationManager.navigateBack(). Can’t promise that it works, but apparently it should.