aboutsummaryrefslogtreecommitdiff
path: root/app/src/main/res/navigation/nav_graph.xml
blob: 4a0cfa250e0257a421673b59114ae10bd9661428 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<?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/nav_graph"
    app:startDestination="@id/HomePage">

    <fragment
        android:id="@+id/HomePage"
        android:name="xyz.adjutor.aniki.HomePage"
        android:label="@string/home_page_label"
        tools:layout="@layout/home_page">

        <action
            android:id="@+id/action_HomePage_to_TopMangaPage"
            app:destination="@id/TopMangaPage" />
    </fragment>

    <fragment
        android:id="@+id/TopMangaPage"
        android:name="xyz.adjutor.aniki.topmanga.TopMangaPage"
        android:label="@string/top_manga_page_label"
        tools:layout="@layout/top_manga_page">

        <action
            android:id="@+id/action_TopMangaPage_to_HomePage"
            app:destination="@id/HomePage" />
    </fragment>

</navigation>