import React, { ReactNode } from 'react'; import { CommonActions } from '@react-navigation/native'; import { appScreensNavOptions } from '@config/navigation'; import Routes from '@constants/routes'; import { Navigation } from '@interfaces/navigation'; export function inferRoute(NavigationStructure: any) { return function screenComponent(screenName: Routes, component: ReactNode) { return ( ); }; } export const onResetStack = ( navigation: Navigation['navigation'], nextRoutes: { name: string; params?: any }[], initialRoute = Routes.Home ) => { navigation.dispatch( CommonActions.reset({ index: 0, routes: [{ name: initialRoute }, ...nextRoutes] }) ); };