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

feat: Add bluetooth Scales support (#144)

This commit is contained in:
2023-02-14 14:20:54 +01:00
committed by GitHub
parent e14e3881c1
commit 1f780ae2c4
77 changed files with 2186 additions and 249 deletions

View File

@ -27,6 +27,9 @@
<action
android:id="@+id/action_nav_home_to_nav_weight_dialog"
app:destination="@id/nav_weight_dialog" />
<action
android:id="@+id/action_nav_home_to_testsFragment"
app:destination="@id/testsFragment" />
</fragment>
<fragment
@ -43,6 +46,9 @@
<action
android:id="@+id/action_nav_list_weight_to_nav_weight_dialog"
app:destination="@id/nav_weight_dialog" />
<action
android:id="@+id/action_nav_list_weight_to_scanScalesDialog"
app:destination="@id/scanScalesDialog" />
</fragment>
<fragment
@ -196,4 +202,14 @@
app:argType="boolean"
/>
</dialog>
<fragment
android:id="@+id/testsFragment"
android:name="com.dzeio.openhealth.ui.tests.TestsFragment"
tools:layout="@layout/fragment_tests"
android:label="TestsFragment" />
<dialog
android:id="@+id/scanScalesDialog"
tools:layout="@layout/dialog_search"
android:name="com.dzeio.openhealth.ui.weight.ScanScalesDialog"
android:label="ScanScalesDialog" />
</navigation>