diff options
author | Clyhtsuriva <aimeric@adjutor.xyz> | 2021-03-14 13:10:10 +0100 |
---|---|---|
committer | Clyhtsuriva <aimeric@adjutor.xyz> | 2021-03-14 13:10:10 +0100 |
commit | dd4ea618de112f527fb96f1aaec7efef75ba9fce (patch) | |
tree | 53cac7d8c627f02dfef171a0388da49864c50887 /app/src/main/res/navigation | |
parent | f9f079eea806454d49d6088089511d72e1c28f86 (diff) | |
parent | 1d70485121c604300ae371468f2f3c6fbdca395c (diff) |
Merge branch 'feature/search' into develop
Diffstat (limited to 'app/src/main/res/navigation')
-rw-r--r-- | app/src/main/res/navigation/nav_graph.xml | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/app/src/main/res/navigation/nav_graph.xml b/app/src/main/res/navigation/nav_graph.xml index 4ceeab2..89cbc89 100644 --- a/app/src/main/res/navigation/nav_graph.xml +++ b/app/src/main/res/navigation/nav_graph.xml @@ -17,6 +17,12 @@ <action android:id="@+id/action_HomePage_to_TopAnimePage" app:destination="@id/TopAnimePage" /> + <action + android:id="@+id/action_HomePage_to_SearchMangaPage" + app:destination="@id/SearchMangaPage" /> + <action + android:id="@+id/action_HomePage_to_SearchAnimePage" + app:destination="@id/SearchAnimePage" /> </fragment> @@ -40,5 +46,25 @@ android:id="@+id/action_TopAnimePage_to_HomePage" app:destination="@id/HomePage" /> </fragment> + <fragment + android:id="@+id/SearchMangaPage" + android:name="xyz.adjutor.aniki.manga.search.SearchMangaPage" + android:label="@string/search_manga_page_label" + tools:layout="@layout/search_manga_page"> + + <action + android:id="@+id/action_SearchMangaPage_to_HomePage" + app:destination="@id/HomePage" /> + </fragment> + <fragment + android:id="@+id/SearchAnimePage" + android:name="xyz.adjutor.aniki.anime.search.SearchAnimePage" + android:label="@string/search_anime_page_label" + tools:layout="@layout/search_anime_page"> + + <action + android:id="@+id/action_SearchAnimePage_to_HomePage" + app:destination="@id/HomePage" /> + </fragment> </navigation>
\ No newline at end of file |