nav_graph.xml 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <navigation xmlns:android="http://schemas.android.com/apk/res/android"
  3. xmlns:app="http://schemas.android.com/apk/res-auto"
  4. xmlns:tools="http://schemas.android.com/tools"
  5. android:id="@+id/nav_graph.xml"
  6. app:startDestination="@id/splashFragment">
  7. <fragment
  8. android:id="@+id/splashFragment"
  9. android:name="com.mrozon.feature_splash.presentation.SplashFragment"
  10. android:label="SplashFragment"
  11. tools:layout="@layout/fragment_splash" >
  12. <action
  13. android:id="@+id/action_splashFragment_to_loginFragment"
  14. app:destination="@id/loginFragment" />
  15. </fragment>
  16. <fragment
  17. android:id="@+id/loginFragment"
  18. android:name="com.mrozon.feature_auth.presentation.LoginFragment"
  19. tools:layout="@layout/fragment_login"
  20. android:label="LoginFragment" >
  21. <action
  22. android:id="@+id/action_loginFragment_to_registrationFragment"
  23. app:destination="@id/registrationFragment" />
  24. </fragment>
  25. <fragment
  26. android:id="@+id/registrationFragment"
  27. tools:layout="@layout/fragment_registration"
  28. android:name="com.mrozon.feature_auth.presentation.RegistrationFragment"
  29. android:label="RegistrationFragment" >
  30. <action
  31. android:id="@+id/action_registrationFragment_to_loginFragment"
  32. app:destination="@id/loginFragment" />
  33. </fragment>
  34. </navigation>