replacePrevious(route) Replace the previous scene.
replacePreviousAndPop(route) Replace the previous scene and pop to it.
resetTo(route) Navigate to a new scene and reset route stack.
replace(route) Replace the current scene with a new route.
popToTop() Pop to the first scene in the stack, unmounting every other scene.
renderScene function Required function which renders the scene for a given route. Will be invoked with the route and the navigator object (route, navigator) => <MySceneComponent title={route.title} navigator={navigator} />
replaceAtIndex(route, index, cb) Replace a scene as specified by an index index specifies the route in the stack that should be replaced. If it's negative, it counts from the back.
popToRoute(route) Pop to a particular scene, as specified by its route. All scenes after it will be unmounted.
push(route) Navigate forward to a new scene, squashing any scenes that you could jumpForward to.
onWillFocus function Will emit the target route upon mounting and before each nav transition
Page 38 of 64