From 121caf3f3be5dcdd9b5b6f32a9785b3992ef53d5 Mon Sep 17 00:00:00 2001 From: Biswakalyan Bhuyan Date: Wed, 16 Oct 2024 18:35:51 +0530 Subject: Added more navigation in SignUpScreen and in ForgotPasswordScreen --- src/screens/Auth/ForgotPasswordScreen.js | 9 ++++- src/screens/Auth/SignupScreen.js | 57 +++++++++++++++++++++++++++----- 2 files changed, 57 insertions(+), 9 deletions(-) diff --git a/src/screens/Auth/ForgotPasswordScreen.js b/src/screens/Auth/ForgotPasswordScreen.js index a768f20..0dd8c08 100644 --- a/src/screens/Auth/ForgotPasswordScreen.js +++ b/src/screens/Auth/ForgotPasswordScreen.js @@ -1,7 +1,7 @@ import React, { useState } from 'react'; import { View, Text, TextInput, Button, StyleSheet, Alert } from 'react-native'; -const ForgotPasswordScreen = () => { +const ForgotPasswordScreen = ({ navigation }) => { const [email, setEmail] = useState(''); const handleForgotPassword = () => { @@ -21,6 +21,9 @@ const ForgotPasswordScreen = () => { autoCapitalize="none" />