1
0
mirror of https://github.com/dzeiocom/OpenHealth.git synced 2025-06-22 04:59:18 +00:00

feat: Add bottom navbar

This commit is contained in:
2022-07-05 15:38:50 +02:00
parent 939dcd24d3
commit cd6337a1b6
25 changed files with 685 additions and 167 deletions

View File

@ -44,6 +44,12 @@
<action
android:id="@+id/action_nav_home_to_aboutFragment"
app:destination="@id/aboutFragment" />
<action
android:id="@+id/action_nav_home_to_browseFragment"
app:destination="@id/browseFragment" />
<action
android:id="@+id/action_nav_home_to_activityFragment"
app:destination="@id/activityFragment" />
</fragment>
<fragment
@ -173,4 +179,16 @@
android:name="com.dzeio.openhealth.ui.about.AboutFragment"
android:label="AboutFragment"
tools:layout="@layout/fragment_about"/>
<fragment
android:id="@+id/browseFragment"
android:name="com.dzeio.openhealth.ui.browse.BrowseFragment"
android:label="fragment_activity"
tools:layout="@layout/fragment_activity" />
<fragment
android:id="@+id/activityFragment"
android:name="com.dzeio.openhealth.ui.activity.ActivityFragment"
android:label="fragment_activity"
tools:layout="@layout/fragment_activity" />
</navigation>