25 lines
983 B
XML
Executable File
25 lines
983 B
XML
Executable File
<?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/mobile_navigation"
|
|
app:startDestination="@+id/navigation_home">
|
|
|
|
<fragment
|
|
android:id="@+id/navigation_home"
|
|
android:name="com.example.iubhgamerapp.ui.HomeFragment"
|
|
android:label="@string/title_home"
|
|
tools:layout="@layout/fragment_home" />
|
|
|
|
<fragment
|
|
android:id="@+id/navigation_rate"
|
|
android:name="com.example.iubhgamerapp.ui.RatingFragment"
|
|
android:label="@string/title_rate"
|
|
tools:layout="@layout/fragment_rating" />
|
|
|
|
<fragment
|
|
android:id="@+id/navigation_chat"
|
|
android:name="com.example.iubhgamerapp.ui.ChatFragment"
|
|
android:label="@string/title_chat"
|
|
tools:layout="@layout/fragment_chat" />
|
|
</navigation> |