Skip to content

Instantly share code, notes, and snippets.

@1jGabriel
Created October 19, 2020 13:15
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save 1jGabriel/7b1c76a4425624133eb93ae271fcbde5 to your computer and use it in GitHub Desktop.
Save 1jGabriel/7b1c76a4425624133eb93ae271fcbde5 to your computer and use it in GitHub Desktop.
Second Feature navgraph
<?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/nav_feature_two"
app:startDestination="@id/fragment_c">
<fragment
android:id="@+id/fragment_c"
android:name="io.jgabriel.featuretwo.FragmentC">
<action
android:id="@+id/action_go_to_d"
app:destination="@+id/fragment_d"
app:popUpTo="@+id/fragment_c" />
</fragment>
<fragment
android:id="@+id/fragment_d"
android:name="io.jgabriel.featuretwo.FragmentD"/>
</navigation>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment