unioil-loyalty-rn-app/app/utils/navigation.js

13 lines
236 B
JavaScript

let navigationRef;
export const setNavigationRef = (ref) => {
navigationRef = ref;
}
export const getNavigationRef = () => {
return navigationRef;
}
export const navigate = (name, data) => {
navigationRef.navigate(name, data)
}