2023-05-02 20:52:56 +02:00
|
|
|
<?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/main_nav_graph"
|
|
|
|
|
app:startDestination="@id/schedule">
|
|
|
|
|
|
|
|
|
|
<fragment
|
|
|
|
|
android:id="@+id/schedule"
|
2023-05-06 22:56:37 +02:00
|
|
|
android:name="com.denizk0461.weserplaner.fragment.EventFragment"
|
2023-05-02 20:52:56 +02:00
|
|
|
android:label="EventFragment"
|
|
|
|
|
tools:layout="@layout/fragment_event"/>
|
2023-05-20 23:01:53 +02:00
|
|
|
<fragment
|
|
|
|
|
android:id="@+id/exam_overview"
|
|
|
|
|
android:name="com.denizk0461.weserplaner.fragment.TaskOverviewFragment"
|
|
|
|
|
android:label="ExamOverviewFragment"
|
|
|
|
|
tools:layout="@layout/fragment_task_overview"/>
|
2023-05-02 20:52:56 +02:00
|
|
|
<fragment
|
|
|
|
|
android:id="@+id/canteen"
|
2023-05-06 22:56:37 +02:00
|
|
|
android:name="com.denizk0461.weserplaner.fragment.CanteenFragment"
|
2023-05-20 23:01:53 +02:00
|
|
|
android:label="CanteenFragment"
|
|
|
|
|
tools:layout="@layout/fragment_canteen"/>
|
|
|
|
|
<fragment
|
|
|
|
|
android:id="@+id/room_finder"
|
|
|
|
|
android:name="com.denizk0461.weserplaner.fragment.RoomFinderFragment"
|
|
|
|
|
android:label="RoomFinderFragment"
|
|
|
|
|
tools:layout="@layout/fragment_room_finder"/>
|
2023-05-02 20:52:56 +02:00
|
|
|
<fragment
|
|
|
|
|
android:id="@+id/settings"
|
2023-05-06 22:56:37 +02:00
|
|
|
android:name="com.denizk0461.weserplaner.fragment.SettingsFragment"
|
2023-05-02 20:52:56 +02:00
|
|
|
android:label="SettingsFragment"
|
|
|
|
|
tools:layout="@layout/fragment_settings"/>
|
|
|
|
|
</navigation>
|