BlueWallet/NavigationService.ts
Marcos Rodriguez Vélez 341188d1d3
REF: UnlockWith handle all scenarios of auth (#6169)
* REF: UnlockWith handle all scenarios of auth

* FIX: Keychain wipe
2024-02-24 11:08:10 -04:00

25 lines
652 B
TypeScript

import { createNavigationContainerRef, ParamListBase, NavigationAction } from '@react-navigation/native';
export const navigationRef = createNavigationContainerRef<ParamListBase>();
export function navigate(name: string, params?: ParamListBase) {
if (navigationRef.isReady()) {
navigationRef.current?.navigate(name, params);
}
}
export function dispatch(action: NavigationAction) {
if (navigationRef.isReady()) {
navigationRef.current?.dispatch(action);
}
}
export function reset() {
if (navigationRef.isReady()) {
navigationRef.current?.reset({
index: 0,
routes: [{ name: 'UnlockWithScreenRoot' }],
});
}
}