|
@ -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> |
|
|
); |
|
|
); |
|
|
|
|
|
|
|
|