ref: 6ee6a975c4ac992fb63dc8d8eacc00c2c2692a12
app/src/main/res/navigation/front_navigation.xml
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 |
<?xml version="1.0" encoding="utf-8"?> <navigation xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/apk/res-auto" xmlns:tools="http://schemas.android.com/tools" android:id="@+id/front_navigation" app:startDestination="@+id/navigation_home"> <fragment android:id="@+id/navigation_home" android:name="ml.adamsprogs.bimba.dashboard.ui.home.HomeFragment" android:label="@string/title_home" tools:layout="@layout/fragment_home" /> <fragment android:id="@+id/navigation_map" android:name="ml.adamsprogs.bimba.dashboard.ui.map.MapFragment" android:label="@string/title_map" tools:layout="@layout/fragment_map" /> <fragment android:id="@+id/navigation_voyage" android:name="ml.adamsprogs.bimba.dashboard.ui.voyage.VoyageFragment" android:label="@string/title_voyage" tools:layout="@layout/fragment_voyage" /> </navigation> |