Famous RenderController by default does transitions by crossfading but want the in-transition to swipe the view in from the right and the out-transition to move it to the left. Can this be achieved? For now I've only succeeded in controlling the fade speed and easing:
function AppView() {
RenderController.call(this, {
inTransition: {curve: "easeInOut", duration: 400},
outTransition: {curve: "easeInOut", duration: 400},
overlap: false
});
...
Previously we had this functionality with StateModifiers and setTransforms. How could I get the same while using RenderController?