Skip to content

Instantly share code, notes, and snippets.

@ceruleanotter
Created June 20, 2019 19:04
Show Gist options
  • Save ceruleanotter/40ededca957ddc070ab505c717c865d7 to your computer and use it in GitHub Desktop.
Save ceruleanotter/40ededca957ddc070ab505c717c865d7 to your computer and use it in GitHub Desktop.
ViewModel Integrations: NavGraph with a ViewModel Example 2
<navigation app:startDestination="@id/homeFragment" ...>
<fragment android:id="@+id/homeFragment" .../>
<fragment android:id="@+id/productListFragment" .../>
<fragment android:id="@+id/productFragment" .../>
<fragment android:id="@+id/bargainFragment" .../>
<navigation
android:id="@+id/checkout_graph"
app:startDestination="@id/cartFragment">
<fragment android:id="@+id/orderSummaryFragment".../>
<fragment android:id="@+id/addressFragment" .../>
<fragment android:id="@+id/paymentFragment" .../>
<fragment android:id="@+id/cartFragment" .../>
</navigation>
</navigation>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment