27 lines
932 B
XML
27 lines
932 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"
|
|
android:id="@+id/home_navigation"
|
|
app:startDestination="@id/gamesFragment">
|
|
|
|
<fragment
|
|
android:id="@+id/gamesFragment"
|
|
android:name="org.yuzu.yuzu_emu.ui.GamesFragment"
|
|
android:label="PlatformGamesFragment" />
|
|
|
|
<fragment
|
|
android:id="@+id/optionsFragment"
|
|
android:name="org.yuzu.yuzu_emu.fragments.OptionsFragment"
|
|
android:label="OptionsFragment" />
|
|
|
|
<fragment
|
|
android:id="@+id/firstTimeSetupFragment"
|
|
android:name="org.yuzu.yuzu_emu.fragments.SetupFragment"
|
|
android:label="FirstTimeSetupFragment" >
|
|
<action
|
|
android:id="@+id/action_firstTimeSetupFragment_to_gamesFragment"
|
|
app:destination="@id/gamesFragment" />
|
|
</fragment>
|
|
|
|
</navigation>
|