From d5f695da5c7fd112d72e0df3f2ec72371c3d3adc Mon Sep 17 00:00:00 2001 From: Arseniy Movshev Date: Fri, 2 Jun 2023 00:31:50 +0100 Subject: Add heartrate graph (experimental, slightly broken) --- src/main.qml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) (limited to 'src/main.qml') diff --git a/src/main.qml b/src/main.qml index 153dac4..bcbb71d 100644 --- a/src/main.qml +++ b/src/main.qml @@ -110,6 +110,20 @@ Application { } Item { width: parent.width; height: parent.width*0.1} + Label { + anchors { + left: parent.left + margins: app.width*0.1 + } + text: "Heartrate" + } + + HrGraph { + anchors.horizontalCenter: parent.horizontalCenter + width: parent.width*0.9 + height: app.height*2/3 + } + ListItem { title: "Settings" iconName: "ios-settings-outline" -- cgit v1.2.3-54-g00ecf