summaryrefslogtreecommitdiffstats
path: root/app/src/main/res/navigation
diff options
context:
space:
mode:
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