Lacerta/feature/home/src/main/res/navigation/feature_home_navigation.xml

23 lines
959 B
XML
Raw Normal View History

2023-12-18 01:34:16 +00: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"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/feature_home_navigation"
app:startDestination="@id/homeTopFragment">
2023-12-18 01:34:16 +00:00
<fragment
android:id="@+id/homeTopFragment"
android:name="one.nem.lacerta.feature.home.HomeTopFragment"
android:label="fragment_home_top"
2023-12-18 01:54:49 +00:00
tools:layout="@layout/fragment_home_top" >
<action
android:id="@+id/action_homeTopFragment_pop"
app:enterAnim="@anim/nav_default_enter_anim"
app:exitAnim="@anim/nav_default_exit_anim"
app:popUpTo="@id/homeTopFragment"
app:popUpToInclusive="true"
app:popEnterAnim="@anim/nav_default_pop_enter_anim"
app:popExitAnim="@anim/nav_default_pop_exit_anim" />
</fragment>
2023-12-18 01:34:16 +00:00
</navigation>