Adds Edit Monster placeholder fragment.

This commit is contained in:
2021-05-24 02:48:00 -07:00
committed by Tom Hicks
parent f507f9d7cd
commit 87c845bd0d
10 changed files with 281 additions and 187 deletions

View File

@@ -49,6 +49,22 @@
android:id="@+id/navigation_monster"
android:name="com.majinnaibu.monstercards.ui.monster.MonsterDetailFragment"
android:label="Monster"
tools:layout="@layout/fragment_monster" />
tools:layout="@layout/fragment_monster">
<argument
android:name="monster_id"
app:argType="string" />
<action
android:id="@+id/action_navigation_monster_to_editMonsterFragment"
app:destination="@id/editMonsterFragment" />
</fragment>
<fragment
android:id="@+id/editMonsterFragment"
android:name="com.majinnaibu.monstercards.ui.monster.EditMonsterFragment"
android:label="fragment_edit_monster_list"
tools:layout="@layout/fragment_edit_monster_list" >
<argument
android:name="monster_id"
app:argType="string" />
</fragment>
</navigation>