import React, { useState } from 'react'; import { View, Text, TextInput, Button, StyleSheet, Alert } from 'react-native'; const LoginScreen = ({ navigation }) => { const [email, setEmail] = useState(''); const [password, setPassword] = useState(''); const handleLogin = () => { // Handle login logic here Alert.alert("Login", "Login button pressed"); }; const handleRegister = () => { // Navigate to the Signup screen navigation.navigate('Signup'); }; const handleForgotPassword = () => { console.log("Navigating to Forgot Password"); // Navigate to the forgot password screen navigation.navigate('ForgotPassword'); }; const handleTesting = () => { console.log("Navigating to Forgot Password"); // Navigate to the forgot password screen navigation.navigate('MallSelection'); }; return ( Login