summaryrefslogtreecommitdiffstats
path: root/app/src/main/res/navigation
diff options
context:
space:
mode:
authorMaksymilian Jopek <maks@jopek.eu>2022-09-21 21:20:17 +0200
committerMaksymilian Jopek <maks@jopek.eu>2022-09-21 21:20:17 +0200
commit7a012fedd21a03a26bb40fdf8a91315b6c512ec9 (patch)
tree711cd44e2697bbce85e34907a3b32da3a12d6437 /app/src/main/res/navigation
downloadlector-de-codi-7a012fedd21a03a26bb40fdf8a91315b6c512ec9.tar.gz
lector-de-codi-7a012fedd21a03a26bb40fdf8a91315b6c512ec9.tar.zst
lector-de-codi-7a012fedd21a03a26bb40fdf8a91315b6c512ec9.zip
Initial commit
Diffstat (limited to 'app/src/main/res/navigation')
-rw-r--r--app/src/main/res/navigation/mobile_navigation.xml25
1 files changed, 25 insertions, 0 deletions
diff --git a/app/src/main/res/navigation/mobile_navigation.xml b/app/src/main/res/navigation/mobile_navigation.xml
new file mode 100644
index 0000000..23328c9
--- /dev/null
+++ b/app/src/main/res/navigation/mobile_navigation.xml
@@ -0,0 +1,25 @@
+<?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/mobile_navigation"
+ app:startDestination="@+id/nav_reader">
+
+ <fragment
+ android:id="@+id/nav_reader"
+ android:name="com.jopek.lectordecodi.ui.reader.ReaderFragment"
+ android:label="@string/menu_reader"
+ tools:layout="@layout/fragment_reader" />
+
+ <fragment
+ android:id="@+id/nav_barcode_gen"
+ android:name="com.jopek.lectordecodi.ui.barcode_gen.BarcodeGenFragment"
+ android:label="@string/menu_barcode_gen"
+ tools:layout="@layout/fragment_barcode_gen" />
+
+ <fragment
+ android:id="@+id/nav_qrcode_gen"
+ android:name="com.jopek.lectordecodi.ui.qrcode_gen.QRCodeGenFragment"
+ android:label="@string/menu_qrcode_gen"
+ tools:layout="@layout/fragment_qrcode_gen" />
+</navigation> \ No newline at end of file