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"/>
|
|
|
|
|
<fragment
|
|
|
|
|
android:id="@+id/canteen"
|
2023-05-06 22:56:37 +02:00
|
|
|
android:name="com.denizk0461.weserplaner.fragment.CanteenFragment"
|
2023-05-02 20:52:56 +02:00
|
|
|
android:label="CanteenFragment"/>
|
|
|
|
|
<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>
|