mirror of
https://github.com/BlueWallet/BlueWallet.git
synced 2024-11-19 01:40:12 +01:00
341188d1d3
* REF: UnlockWith handle all scenarios of auth * FIX: Keychain wipe
25 lines
652 B
TypeScript
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' }],
|
|
});
|
|
}
|
|
}
|