import React, { useState } from 'react'; import { View, Text, StyleSheet, KeyboardAvoidingView, Platform, ScrollView, TouchableOpacity, Alert, } from 'react-native'; import { router } from 'expo-router'; import { Ionicons } from '@expo/vector-icons'; import { Button } from '@/components/ui/Button'; import { Input } from '@/components/ui/Input'; import { AppColors, BorderRadius, FontSizes, Spacing } from '@/constants/theme'; export default function ForgotPasswordScreen() { const [email, setEmail] = useState(''); const [isLoading, setIsLoading] = useState(false); const handleSubmit = () => { if (!email.trim()) { Alert.alert('Error', 'Please enter your email address'); return; } // Show "in development" message Alert.alert( 'Coming Soon', 'Password recovery is currently under development. Please contact support for assistance.', [{ text: 'OK' }] ); }; return ( {/* Back Button */} router.back()}> {/* Header */} Forgot Password? Enter your email address and we'll send you instructions to reset your password. {/* Form */}