aboutsummaryrefslogtreecommitdiff
path: root/src/main.qml
diff options
context:
space:
mode:
authorArseniy Movshev <dodoradio@outlook.com>2023-06-02 00:31:50 +0100
committerArseniy Movshev <dodoradio@outlook.com>2023-06-11 11:48:16 +0100
commitd5f695da5c7fd112d72e0df3f2ec72371c3d3adc (patch)
tree1172e4f0ffe93f187f7e1b02eb5e322c7e7a1d9b /src/main.qml
parentd685d8eecb890f09d69ce38884e507900f7d36a4 (diff)
Add heartrate graph (experimental, slightly broken)
Diffstat (limited to '')
-rw-r--r--src/main.qml14
1 files changed, 14 insertions, 0 deletions
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"