LibreTube/app/src/main/res/navigation/nav.xml

23 lines
887 B
XML
Raw Normal View History

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"
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>