Add: Main navigation graph [new UI]

This commit is contained in:
machiav3lli 2021-12-23 01:38:42 +01:00
parent 7271528d7a
commit 114a2574ff

View File

@ -0,0 +1,21 @@
<?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"
app:startDestination="@id/exploreTab">
<fragment
android:id="@+id/exploreTab"
android:name="com.looker.droidify.ui.fragments.ExploreFragment"
tools:layout="@layout/fragment_explore_x" />
<fragment
android:id="@+id/latestTab"
android:name="com.looker.droidify.ui.fragments.LatestFragment"
tools:layout="@layout/fragment_latest_x" />
<fragment
android:id="@+id/installedTab"
android:name="com.looker.droidify.ui.fragments.InstalledFragment"
tools:layout="@layout/fragment_installed_x" />
</navigation>