blob: 8d197c09742f11e6cd223f48563cedbfe76381f9 (
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
|
<?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_manga"
android:name="xyz.adjutor.aniki.presentation.view.fragment.TopMangaFragment"
android:label="@string/title_manga"
tools:layout="@layout/top_manga_page" />
<fragment
android:id="@+id/navigation_home"
android:name="xyz.adjutor.aniki.presentation.view.fragment.HomePage"
android:label="@string/title_home"
tools:layout="@layout/home_page" />
<fragment
android:id="@+id/navigation_anime"
android:name="xyz.adjutor.aniki.presentation.view.fragment.TopAnimeFragment"
android:label="@string/title_anime"
tools:layout="@layout/top_anime_page" />
</navigation>
|