import React from 'react'; import {createNativeStackNavigator} from '@react-navigation/native-stack'; import LoginScreen from '../screens/login'; import RegisterScreen from '../screens/register'; import AccountVerificationScreen from '../screens/accountVerification'; import HomeScreen from '../screens/home'; import HistoryScreen from '../screens/history'; import NotificationScreen from '../screens/notification'; import ProfileScreen from '../screens/profile'; import EditProfileScreen from '../screens/editProfile'; import CloseAccountScreen from '../screens/closeAccount'; import {RootStackParamList} from './type'; import TermsAndConnditionsScreen from '../screens/termsAndConditions'; import NavigationRouteScreen from '../screens/navigationRoute'; import SetPasswordScreen from '../screens/setPassword'; import RegularPassportScreen from '../screens/regularPassport'; import ExpressPassportScreen from '../screens/expressPassport'; import GuidebookScreen from '../screens/guidebook'; import EazyPassportScreen from '../screens/eazyPassport'; import ApplicationDetailScreen from '../screens/applicationDetail'; import PassportRequirementsScreen from '../screens/passportRequirements'; import ApplicationGuideScreen from '../screens/applicationGuide'; const Stack = createNativeStackNavigator(); function RootStack() { return ( {() => console.log('Show dialog!')} />} ); } export default RootStack;