2021-12-09 18:25:32 +05: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"
|
2022-07-01 21:59:47 +05:30
|
|
|
app:startDestination="@id/homeFragment">
|
2021-12-09 18:25:32 +05:30
|
|
|
<fragment
|
2022-07-01 21:59:47 +05:30
|
|
|
android:id="@+id/homeFragment"
|
2022-09-20 23:23:34 +05:30
|
|
|
android:name="com.github.libretube.ui.fragments.HomeFragment"
|
2021-12-09 18:25:32 +05:30
|
|
|
android:label="fragment_home"
|
2022-02-10 00:08:41 +05:30
|
|
|
tools:layout="@layout/fragment_home" />
|
2022-11-17 21:53:10 +05:30
|
|
|
<fragment
|
|
|
|
android:id="@+id/trendsFragment"
|
|
|
|
android:name="com.github.libretube.ui.fragments.TrendsFragment"
|
|
|
|
android:label="fragment_trends"
|
|
|
|
tools:layout="@layout/fragment_trends" />
|
2021-12-09 18:25:32 +05:30
|
|
|
<fragment
|
2022-07-01 21:59:47 +05:30
|
|
|
android:id="@+id/subscriptionsFragment"
|
2022-09-20 23:23:34 +05:30
|
|
|
android:name="com.github.libretube.ui.fragments.SubscriptionsFragment"
|
2021-12-09 18:25:32 +05:30
|
|
|
android:label="fragment_subscriptions"
|
2022-02-10 00:08:41 +05:30
|
|
|
tools:layout="@layout/fragment_subscriptions" />
|
2021-12-09 18:25:32 +05:30
|
|
|
<fragment
|
2022-07-01 21:59:47 +05:30
|
|
|
android:id="@+id/libraryFragment"
|
2022-09-20 23:23:34 +05:30
|
|
|
android:name="com.github.libretube.ui.fragments.LibraryFragment"
|
2021-12-09 18:25:32 +05:30
|
|
|
android:label="fragment_library"
|
2022-08-01 01:47:36 +05:30
|
|
|
tools:layout="@layout/fragment_library" />
|
2021-12-28 01:37:07 +05:30
|
|
|
<fragment
|
|
|
|
android:id="@+id/searchFragment"
|
2022-09-20 23:23:34 +05:30
|
|
|
android:name="com.github.libretube.ui.fragments.SearchFragment"
|
2021-12-28 01:37:07 +05:30
|
|
|
android:label="fragment_search"
|
|
|
|
tools:layout="@layout/fragment_search" />
|
2022-08-01 01:47:36 +05:30
|
|
|
<fragment
|
|
|
|
android:id="@+id/searchResultFragment"
|
2022-09-20 23:23:34 +05:30
|
|
|
android:name="com.github.libretube.ui.fragments.SearchResultFragment"
|
2022-08-01 01:47:36 +05:30
|
|
|
android:label="fragment_search"
|
|
|
|
tools:layout="@layout/fragment_search_result" />
|
2022-02-05 00:25:05 +05:30
|
|
|
<fragment
|
2022-07-01 21:59:47 +05:30
|
|
|
android:id="@+id/channelFragment"
|
2022-09-20 23:23:34 +05:30
|
|
|
android:name="com.github.libretube.ui.fragments.ChannelFragment"
|
2022-02-05 00:25:05 +05:30
|
|
|
android:label="channel"
|
2022-09-09 18:12:46 +05:30
|
|
|
tools:layout="@layout/fragment_channel" />
|
2022-02-06 18:40:27 +05:30
|
|
|
<fragment
|
|
|
|
android:id="@+id/playlistFragment"
|
2022-09-20 23:23:34 +05:30
|
|
|
android:name="com.github.libretube.ui.fragments.PlaylistFragment"
|
2022-02-06 18:40:27 +05:30
|
|
|
android:label="fragment_playlist"
|
2022-09-09 18:12:46 +05:30
|
|
|
tools:layout="@layout/fragment_playlist" />
|
2022-02-08 14:58:50 +05:30
|
|
|
<fragment
|
2022-07-01 21:59:47 +05:30
|
|
|
android:id="@+id/watchHistoryFragment"
|
2022-09-20 23:23:34 +05:30
|
|
|
android:name="com.github.libretube.ui.fragments.WatchHistoryFragment"
|
2022-07-01 21:59:47 +05:30
|
|
|
android:label="@string/watch_history"
|
2022-07-02 01:02:26 +05:30
|
|
|
tools:layout="@layout/fragment_watch_history" />
|
2022-09-09 18:12:46 +05:30
|
|
|
<fragment
|
|
|
|
android:id="@+id/downloadsFragment"
|
2022-09-20 23:23:34 +05:30
|
|
|
android:name="com.github.libretube.ui.fragments.DownloadsFragment"
|
2022-09-09 18:12:46 +05:30
|
|
|
android:label="@string/downloads"
|
|
|
|
tools:layout="@layout/fragment_downloads" />
|
2021-12-09 18:25:32 +05:30
|
|
|
</navigation>
|