Neo-Store/src/main/res/navigation/navigation_graph_main.xml
2021-12-23 01:38:42 +01:00

22 lines
808 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"
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>