Files
eden/src/android/app/src/main/res/navigation/home_navigation.xml
T

51 lines
1.8 KiB
XML
Raw Normal View History

2023-04-05 20:26:53 -04:00
<?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/homeSettingsFragment"
android:name="org.yuzu.yuzu_emu.fragments.HomeSettingsFragment"
2023-05-01 16:33:21 -04:00
android:label="HomeSettingsFragment" >
<action
android:id="@+id/action_homeSettingsFragment_to_aboutFragment"
app:destination="@id/aboutFragment" />
2023-05-08 04:49:32 -04:00
<action
android:id="@+id/action_homeSettingsFragment_to_earlyAccessFragment"
app:destination="@id/earlyAccessFragment" />
2023-05-01 16:33:21 -04:00
</fragment>
2023-04-05 20:26:53 -04:00
2023-04-19 22:42:18 -04:00
<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"
app:popUpTo="@id/firstTimeSetupFragment"
app:popUpToInclusive="true" />
2023-04-19 22:42:18 -04:00
</fragment>
2023-04-29 18:35:28 -04:00
<fragment
android:id="@+id/searchFragment"
android:name="org.yuzu.yuzu_emu.fragments.SearchFragment"
android:label="SearchFragment" />
2023-05-01 16:33:21 -04:00
<fragment
android:id="@+id/aboutFragment"
android:name="org.yuzu.yuzu_emu.fragments.AboutFragment"
android:label="AboutFragment" />
2023-05-08 04:49:32 -04:00
<fragment
android:id="@+id/earlyAccessFragment"
android:name="org.yuzu.yuzu_emu.fragments.EarlyAccessFragment"
android:label="EarlyAccessFragment" />
2023-04-05 20:26:53 -04:00
</navigation>