mirror of
https://github.com/BlueWallet/BlueWallet.git
synced 2024-11-19 18:00:17 +01:00
22 lines
348 B
JavaScript
22 lines
348 B
JavaScript
|
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,
|
||
|
};
|