39 lines
1.5 KiB
XML
39 lines
1.5 KiB
XML
<?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/admin_main_nav_graph">
|
|
|
|
<fragment
|
|
android:id="@+id/fragment_profile"
|
|
android:name="ru.myitschool.work.ui.profile.ProfileFragment"
|
|
android:label="Profile"
|
|
tools:layout="@layout/fragment_profile">
|
|
<action
|
|
android:id="@+id/action_fragment_profile_to_fragment_qr"
|
|
app:destination="@id/fragment_qr" />
|
|
</fragment>
|
|
|
|
<fragment
|
|
android:id="@+id/fragment_qr"
|
|
android:name="ru.myitschool.work.ui.qr.scan.QrScanFragment"
|
|
android:label="QrScan"
|
|
tools:layout="@layout/fragment_qr_scan" >
|
|
<action
|
|
android:id="@+id/action_fragment_qr_to_fragment_qr_result"
|
|
app:destination="@id/fragment_qr_result" />
|
|
<action
|
|
android:id="@+id/action_fragment_qr_to_fragment_profile"
|
|
app:destination="@id/fragment_profile" />
|
|
</fragment>
|
|
<fragment
|
|
android:id="@+id/fragment_qr_result"
|
|
android:name="ru.myitschool.work.ui.qr.result.QrResultFragment"
|
|
android:label="QrResult"
|
|
tools:layout="@layout/fragment_qr_result" >
|
|
<action
|
|
android:id="@+id/action_fragment_qr_result_to_fragment_profile"
|
|
app:destination="@id/fragment_profile" />
|
|
</fragment>
|
|
|
|
</navigation> |