diff options
| author | Nazario <francisco.nazario@logixsdigital.com> | 2023-06-05 14:18:06 +0200 |
|---|---|---|
| committer | Nazario <francisco.nazario@logixsdigital.com> | 2023-06-05 14:18:06 +0200 |
| commit | e344a180f40d48ffd1c638ec99c640f2628fe8c8 (patch) | |
| tree | 72872f3f0f14aa47462589336107438dbd16d695 /app/src/main/res/navigation | |
| parent | 69d52a32ce7839d78639a40d5a28f556f9206f1a (diff) | |
Updated class 2/06/23
Diffstat (limited to 'app/src/main/res/navigation')
| -rw-r--r-- | app/src/main/res/navigation/nav_graph.xml | 14 |
1 files changed, 10 insertions, 4 deletions
diff --git a/app/src/main/res/navigation/nav_graph.xml b/app/src/main/res/navigation/nav_graph.xml index 28b85fd..969031b 100644 --- a/app/src/main/res/navigation/nav_graph.xml +++ b/app/src/main/res/navigation/nav_graph.xml @@ -15,16 +15,22 @@ android:id="@+id/navigate_from_loginfragment_to_signinfragment" app:destination="@id/signin_fragment" /> + <action + android:id="@+id/navigate_from_loginfragment_to_passwordrecoveryfragment" + app:destination="@id/password_recovery_fragment" /> + </fragment> <fragment android:id="@+id/signin_fragment" android:name="com.frannazario.proyectoandroid.SigninFragment" android:label="Sign in" - tools:layout="@layout/fragment_signin"> - - </fragment> - + tools:layout="@layout/fragment_signin" /> + <fragment + android:id="@+id/password_recovery_fragment" + android:name="com.frannazario.proyectoandroid.PasswordRecoveryFragment" + android:label="Password recovery" + tools:layout="@layout/fragment_password_recovery" /> </navigation>
\ No newline at end of file |