Skip to content

Instantly share code, notes, and snippets.

@DDihanov
Created December 4, 2020 14:15
Show Gist options
  • Save DDihanov/8aca17d064b85644386c341cd6ed8c0d to your computer and use it in GitHub Desktop.
Save DDihanov/8aca17d064b85644386c341cd6ed8c0d to your computer and use it in GitHub Desktop.
<?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/home_flow"
app:startDestination="@id/homeFragment">
<fragment
android:id="@+id/homeFragment"
android:name="bg.dihanov.home.HomeFragment">
<action
android:id="@+id/action_homeFragment_to_nextFragment"
app:destination="@id/nextFragment" />
</fragment>
<fragment
android:id="@+id/nextFragment"
android:name="bg.dihanov.home.NextFragment" />
</navigation>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment