Initial commit

This commit is contained in:
2021-01-24 19:52:01 +01:00
commit 57db9db189
59 changed files with 2379 additions and 0 deletions

View File

@@ -0,0 +1,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/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.RateFragment"
android:label="@string/title_rate"
tools:layout="@layout/fragment_rate" />
<fragment
android:id="@+id/navigation_chat"
android:name="com.example.iubhgamerapp.ui.ChatFragment"
android:label="@string/title_chat"
tools:layout="@layout/fragment_chat" />
</navigation>