mirror of
https://github.com/libre-tube/LibreTube.git
synced 2024-12-16 15:20:31 +05:30
23 lines
887 B
XML
23 lines
887 B
XML
|
<?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"
|
||
|
app:startDestination="@id/home2">
|
||
|
|
||
|
<fragment
|
||
|
android:id="@+id/home2"
|
||
|
android:name="xyz.btcland.libretube.Home"
|
||
|
android:label="fragment_home"
|
||
|
tools:layout="@layout/fragment_home" />
|
||
|
<fragment
|
||
|
android:id="@+id/subscriptions"
|
||
|
android:name="xyz.btcland.libretube.Subscriptions"
|
||
|
android:label="fragment_subscriptions"
|
||
|
tools:layout="@layout/fragment_subscriptions" />
|
||
|
<fragment
|
||
|
android:id="@+id/library"
|
||
|
android:name="xyz.btcland.libretube.Library"
|
||
|
android:label="fragment_library"
|
||
|
tools:layout="@layout/fragment_library" />
|
||
|
</navigation>
|