No Description

mobile_navigation.xml 998B

12345678910111213141516171819202122232425
  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/mobile_navigation"
  6. app:startDestination="@+id/navigation_home">
  7. <fragment
  8. android:id="@+id/navigation_home"
  9. android:name="uprrp.tania.fragments.AssessmentsFragment"
  10. android:label="@string/title_home"
  11. tools:layout="@layout/fragment_assessments"/>
  12. <fragment
  13. android:id="@+id/navigation_dashboard"
  14. android:name="uprrp.tania.fragments.ConsentFragment"
  15. android:label="@string/title_dashboard"
  16. tools:layout="@layout/fragment_consent" />
  17. <fragment
  18. android:id="@+id/navigation_notifications"
  19. android:name="uprrp.tania.fragments.AssessmentsFragment"
  20. android:label="@string/title_notifications"
  21. tools:layout="@layout/fragment_assessments" />
  22. </navigation>