This repository has been archived on 2025-02-19. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
iubh-gamer-app/app/src/main/res/navigation/mobile_navigation.xml
2022-06-19 14:03:39 +02:00

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>