Bimba.git

ref: translations

app/src/main/res/navigation/front_navigation.xml


 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
<?xml version="1.0" encoding="utf-8"?>

<!--
SPDX-FileCopyrightText: Adam Evyčędo

SPDX-License-Identifier: GPL-3.0-or-later
-->

<navigation xmlns:android="http://schemas.android.com/apk/res/android"
	xmlns:app="http://schemas.android.com/apk/res-auto"
	xmlns:tool="http://schemas.android.com/tools"
	android:id="@+id/front_navigation"
	app:startDestination="@+id/navigation_home">

	<fragment
		android:id="@+id/navigation_home"
		android:name="xyz.apiote.bimba.czwek.dashboard.ui.home.HomeFragment"
		android:label="@string/title_home"
		tool:layout="@layout/fragment_home" />

	<fragment
		android:id="@+id/navigation_map"
		android:name="xyz.apiote.bimba.czwek.dashboard.ui.map.MapFragment"
		android:label="@string/title_map"
		tool:layout="@layout/fragment_map" />

	<fragment
		android:id="@+id/navigation_voyage"
		android:name="xyz.apiote.bimba.czwek.dashboard.ui.voyage.VoyageFragment"
		android:label="@string/title_voyage"
		tool:layout="@layout/fragment_voyage" />
</navigation>