/* * File: AuthStackNavigator.tsx * Description: Stack navigator for authentication screens within the Auth module * Design & Developed by Tech4Biz Solutions * Copyright (c) Spurrin Innovations. All rights reserved. */ import React from 'react'; import { createStackNavigator } from '@react-navigation/stack'; // Import authentication screens import LoginScreen from '../screens/LoginScreen'; import SignUpScreen from '../screens/SignUpScreen'; // Import navigation types import { AuthStackParamList } from './navigationTypes'; import { theme } from '../../../theme'; // Create stack navigator for Auth module const Stack = createStackNavigator(); /** * AuthStackNavigator - Manages navigation between authentication screens * * This navigator handles the flow between: * - LoginScreen: Main authentication screen * - SignUpScreen: Multi-step registration process * * Features: * - Clean header styling * - Smooth transitions between screens * - Type-safe navigation parameters */ const AuthStackNavigator: React.FC = () => { return ( {/* Login Screen - Main authentication entry point */} {/* Sign Up Screen - Multi-step registration process */} ); }; export default AuthStackNavigator; /* * End of File: AuthStackNavigator.tsx * Design & Developed by Tech4Biz Solutions * Copyright (c) Spurrin Innovations. All rights reserved. */