tarot-ens-info/app/src/main/res/navigation/mobile_navigation.xml

19 lines
670 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"
android:id="@+id/mobile_navigation"
app:startDestination="@+id/nav_new_game">
<fragment
android:id="@+id/nav_home"
android:name="fr.ynerant.tarot.ui.home.HomeFragment"
android:label="@string/menu_home"
tools:layout="@layout/fragment_home" />
<fragment
android:id="@+id/nav_new_game"
android:name="fr.ynerant.tarot.ui.newgame.NewGameFragment"
android:label="@string/menu_new_game"
tools:layout="@layout/fragment_new_game" />
</navigation>