Skip to content

Commit

Permalink
Add uncommitted navigatorService file (#106)
Browse files Browse the repository at this point in the history
  • Loading branch information
jmtaber129 committed Jun 27, 2019
1 parent 0a1c7a2 commit 1b7074e
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions examples/TestDriver/src/navigatorService.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
// Used for testing compatibility with the "Navigation without navigation prop" pattern in React
// Navigation. See https://reactnavigation.org/docs/en/navigating-without-navigation-prop.html.

import { NavigationActions } from 'react-navigation';

let _navigator;

function setTopLevelNavigator(navigatorRef) {
_navigator = navigatorRef;
}

function navigate(routeName, params) {
_navigator.dispatch(
NavigationActions.navigate({
routeName,
params,
})
);
}

export default {
navigate,
setTopLevelNavigator,
};

0 comments on commit 1b7074e

Please sign in to comment.