summaryrefslogtreecommitdiffstats
path: root/src/android/app/src/main/res/navigation/settings_navigation.xml
blob: b36200c6558d9130fee8a5252662b6b1317be616 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<?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/settings_navigation"
    app:startDestination="@id/settingsFragment">

    <fragment
        android:id="@+id/settingsFragment"
        android:name="org.yuzu.yuzu_emu.features.settings.ui.SettingsFragment"
        android:label="SettingsFragment">
        <argument
            android:name="menuTag"
            app:argType="string" />
        <argument
            android:name="game"
            app:argType="org.yuzu.yuzu_emu.model.Game"
            app:nullable="true" />
    </fragment>

    <action
        android:id="@+id/action_global_settingsFragment"
        app:destination="@id/settingsFragment" />

</navigation>