2023-05-30 08:48:59 +05:30
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
|
<menu xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
|
|
|
tools:showIn="navigation_view">
|
|
|
|
|
|
|
|
|
|
<group android:checkableBehavior="single">
|
|
|
|
|
<item
|
|
|
|
|
android:id="@+id/nav_home"
|
|
|
|
|
android:icon="@drawable/ic_baseline_home_24"
|
|
|
|
|
android:title="@string/menu_home" />
|
|
|
|
|
<item
|
|
|
|
|
android:id="@+id/nav_profile"
|
2024-01-03 23:09:28 +05:30
|
|
|
android:icon="@drawable/control_panel"
|
2023-05-30 08:48:59 +05:30
|
|
|
android:title="@string/profile" />
|
|
|
|
|
<item
|
|
|
|
|
android:id="@+id/nav_settings"
|
|
|
|
|
android:icon="@drawable/baseline_settings_24"
|
2023-06-03 19:10:48 +05:30
|
|
|
android:title="@string/menu_settings" />
|
2023-05-30 08:48:59 +05:30
|
|
|
</group>
|
2024-02-27 13:59:30 +05:30
|
|
|
</menu>
|