Skip to content
Snippets Groups Projects

Add ability to navigate without adding current scene to backstack

Closed Ghost User requested to merge feature/add-empty-backstack-navigation into master
3 files
+ 15
7
Compare changes
  • Side-by-side
  • Inline
Files
3
+ 2
1
import * as types from './actionTypes';
export function navigate(scene) {
export function navigate(scene, addToBackStack = true) {
return {
type: types.NAVIGATE,
scene,
addToBackStack,
};
}
Loading