This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
initiateTransition: function() { | |
// Set the state so that both screens | |
// will be rendered. | |
this.setState({ | |
transitionStarted: true, | |
transitionDirection: this.state.activeScreen.get('stackIndex') > this.state.screensStackTop.get('stackIndex') ? "back" : "fwd" | |
}); | |
// Schedule a cleanup so that we remove the | |
// previous screen after the transition occurs |