2021-04-30 17:20:15 +00: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/mobile_navigation"
|
2021-05-12 21:51:02 +00:00
|
|
|
app:startDestination="@+id/navigation_search">
|
2021-04-30 17:20:15 +00:00
|
|
|
|
2021-05-12 21:51:02 +00:00
|
|
|
<!-- <fragment
|
2021-04-30 17:20:15 +00:00
|
|
|
android:id="@+id/navigation_home"
|
|
|
|
android:name="com.lagradost.cloudstream3.ui.home.HomeFragment"
|
|
|
|
android:label="@string/title_home"
|
|
|
|
tools:layout="@layout/fragment_home"/>
|
2021-05-12 21:51:02 +00:00
|
|
|
-->
|
2021-04-30 17:20:15 +00:00
|
|
|
<fragment
|
2021-05-12 21:51:02 +00:00
|
|
|
android:id="@+id/navigation_search"
|
|
|
|
android:name="com.lagradost.cloudstream3.ui.search.SearchFragment"
|
|
|
|
android:label="@string/title_search"
|
|
|
|
tools:layout="@layout/fragment_search"/>
|
2021-04-30 17:20:15 +00:00
|
|
|
|
|
|
|
<fragment
|
2021-07-19 13:19:47 +00:00
|
|
|
android:id="@+id/navigation_downloads"
|
2021-07-15 16:45:25 +00:00
|
|
|
android:name="com.lagradost.cloudstream3.ui.download.DownloadFragment"
|
2021-05-12 21:51:02 +00:00
|
|
|
android:label="@string/title_downloads"
|
2021-07-18 13:02:30 +00:00
|
|
|
tools:layout="@layout/fragment_downloads"/>
|
2021-06-10 23:00:22 +00:00
|
|
|
<fragment
|
|
|
|
android:id="@+id/navigation_settings"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:name="com.lagradost.cloudstream3.ui.settings.SettingsFragment"
|
|
|
|
android:label="@string/title_settings"
|
|
|
|
/>
|
2021-07-19 13:19:47 +00:00
|
|
|
|
|
|
|
<fragment
|
|
|
|
android:id="@+id/navigation_download_child"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:name="com.lagradost.cloudstream3.ui.download.DownloadChildFragment"
|
|
|
|
android:label="@string/title_settings"
|
|
|
|
/>
|
2021-04-30 17:20:15 +00:00
|
|
|
</navigation>
|