diff options
Diffstat (limited to 'app/src/main/res/navigation')
| -rw-r--r-- | app/src/main/res/navigation/mobile_navigation.xml | 25 |
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 |
