Browse Source

Connecting password recovery change password to authNavigator stack

master
GabrielTrettel 3 years ago
parent
commit
7be398d796
  1. 7
      src/app/navigation/AuthNavigator.js

7
src/app/navigation/AuthNavigator.js

@ -5,6 +5,7 @@ import RegisterScreen from "../screens/RegisterScreen";
import PasswordRecovery from "../screens/PasswordRecoveryScreen" import PasswordRecovery from "../screens/PasswordRecoveryScreen"
import colors from "../config/colors"; import colors from "../config/colors";
import UserAgreement from "../screens/UserAgreement"; import UserAgreement from "../screens/UserAgreement";
import PasswordRecoveryChangePswd from "../screens/PasswordRecoveryChangePswdScreen";
const Stack = createStackNavigator(); const Stack = createStackNavigator();
@ -32,6 +33,12 @@ const AuthNavigator = () => (
options={{ headerTitle: "" }} //headerStyle: {backgroundColor: colors.primary} }} options={{ headerTitle: "" }} //headerStyle: {backgroundColor: colors.primary} }}
/> />
<Stack.Screen
name="PasswordRecoveryChangePswd"
component={PasswordRecoveryChangePswd}
options={{ headerTitle: "" }}
/>
</Stack.Navigator> </Stack.Navigator>
); );

Loading…
Cancel
Save