mirror of
https://github.com/Aviortheking/Neo-Store.git
synced 2025-05-02 23:52:12 +00:00
22 lines
808 B
XML
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>
|