Skip to content

Instantly share code, notes, and snippets.

GET //api/patients/af8b7f9e-c969-ea11-a811-000d3a20ffa1/diagnostics/results?requestedStates=Published HTTP/1.1
Content-Type: application/json;charset=UTF-8
Version: 21
Authorization: Bearer UUtlUbZRNFXShdYLUS3Eo8HqjqRHHSb_YLWrK9TuMid42H6KR79TUL9ro2AEl3RcjJgjYb9HPeCOj0uUErvLyZ2qZmFAYpJoB0MCPV5YO4RI5jtlDPYmtQ0Vj91P-nD5tHwJrJfDkGlFwyg3lOgxfRagNApqleT7GjqoC84_wFHaNSlFEIMqa5Eb9e6EHXThO9Bno7HgEriZcUFaZd2z6xcmJvvOpv6VvH5-vDSqoITScUR67tUprcPee9VuKmEC-NlqxzTL2aKqRnzGcdKNlP8FaWe51OCdWb87B8HLJYT624TxyhFz_-fL1anuH67mP2CXTo7EuAa1myxl4z_2WN2vbx4xWmODxfd6TWetqI2_LpZMheR4ZOWpr82IMJ6e9X0BqRalqvKn0qvc69sdVKsb4MKjCubOfyEToZrjQMuWgFvq0qJAemDhymM-m5RPbmCDn-dOTcuQmb4Hn8kTR5ppxwZEyZRM30BXh-xd-Hhxz2MoA43y7zzIN8h9QxNgl2v0hqM19DpqFlp5EtjYOvYY5y2JvLadcYTJK14y45gvDaH73d57oPJ22UA4aIxqKO9G_GYG9iOMReM3FY8MwSyaswJe7hg31EexgaF_C23hPw3Q68HAXZ_7uF7GCW368jUAfu9keIvhjbvlWEGexWZ6SyV-9O-h1Nl3BZjX9TOmKoIgFfLZhyeE6T9swx-T5L2FGZB-iJW8DSA024nV1-gG4nLFXBOmdXiPmEM_rK4cKXu98RISeqyV1p_ZFnqj5OrpnfOSGwRaqHlTsqq0Ayx0cB1ZTNlxiB3KIuOOfZqHrXFHocXjPUnHVKV7m4r_xr
@ErikMedina
ErikMedina / nav_graph.xml
Last active December 23, 2021 18:50
Forward destinations
<?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_graph"
app:startDestination="@id/homeFragment">
<fragment
android:id="@+id/homeFragment"
android:name="com.erikmedina.navigationcomponent.HomeFragment"
@ErikMedina
ErikMedina / nav_graph.xml
Last active December 25, 2021 12:12
Backwards destinations
<?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_graph"
app:startDestination="@id/homeFragment">
<fragment
android:id="@+id/homeFragment"
android:name="com.erikmedina.navigationcomponent.HomeFragment"
@ErikMedina
ErikMedina / FirstFragment.kt
Last active December 25, 2021 12:20
Custom back navigation
override fun onViewCreated(view: View, savedInstanceState: Bundle?) {
super.onViewCreated(view, savedInstanceState)
requireActivity().onBackPressedDispatcher.addCallback(viewLifecycleOwner) {
findNavController().navigate(R.id.action_firstFragment_to_homeFragment)
}
}
@ErikMedina
ErikMedina / nav_graph.xml
Created December 25, 2021 12:56
Fix loop bug
<fragment
android:id="@+id/firstFragment"
android:name="com.erikmedina.navigationcomponent.FirstFragment"
tools:layout="@layout/fragment_first">
<action
android:id="@+id/action_firstFragment_to_secondFragment"
app:destination="@id/secondFragment" />
<action
android:id="@+id/action_firstFragment_to_homeFragment"
app:destination="@id/homeFragment"
@ErikMedina
ErikMedina / nav_graph.xml
Created December 25, 2021 13:24
popUpToInclusive
<fragment
android:id="@+id/firstFragment"
android:name="com.erikmedina.navigationcomponent.FirstFragment"
tools:layout="@layout/fragment_first">
<action
android:id="@+id/action_firstFragment_to_secondFragment"
app:destination="@id/secondFragment" />
<action
android:id="@+id/action_firstFragment_to_homeFragment"
app:destination="@id/homeFragment"