summaryrefslogtreecommitdiffstats
path: root/app/src/main/res/navigation
diff options
context:
space:
mode:
authorAlberto Duarte (PWC) <alberto.duarte.delgado@pwc.com>2023-07-06 09:09:09 +0100
committerAlberto Duarte (PWC) <alberto.duarte.delgado@pwc.com>2023-07-06 09:09:09 +0100
commit2b12e7f68c840214b33e772032aff90b8e47b9e0 (patch)
tree99a28c6666677e3b450b646fce0e0c9b9ddf1127 /app/src/main/res/navigation
parent35835765585937cf373cbfbd9c6ccf7939969bac (diff)
muchos cambios, tieen room y arquitectura mvvm pero aun tiene errores
Diffstat (limited to 'app/src/main/res/navigation')
-rw-r--r--app/src/main/res/navigation/nav_graph.xml16
1 files changed, 14 insertions, 2 deletions
diff --git a/app/src/main/res/navigation/nav_graph.xml b/app/src/main/res/navigation/nav_graph.xml
index cb1a441..cd6c344 100644
--- a/app/src/main/res/navigation/nav_graph.xml
+++ b/app/src/main/res/navigation/nav_graph.xml
@@ -25,12 +25,24 @@
android:id="@+id/signin_fragment"
android:name="com.frannazario.proyectoandroid.presentation.fragments.SigninFragment"
android:label="Sign in"
- tools:layout="@layout/fragment_signin" />
+ tools:layout="@layout/fragment_signin" >
+
+ <action
+ android:id="@+id/navigate_from_signinfragment_to_loginfragment"
+ app:destination="@id/login_fragment" />
+
+ </fragment>
<fragment
android:id="@+id/password_recovery_fragment"
android:name="com.frannazario.proyectoandroid.presentation.fragments.PasswordRecoveryFragment"
android:label="Password recovery"
- tools:layout="@layout/fragment_password_recovery" />
+ tools:layout="@layout/fragment_password_recovery" >
+
+ <action
+ android:id="@+id/navigate_from_passwordrecoveryfragment_to_loginfragment"
+ app:destination="@id/login_fragment" />
+
+ </fragment>
</navigation> \ No newline at end of file