Index: sources/gui/qml/dialogs/VitalsEntry.qml =================================================================== diff -u -readda1cc1ad9d62aecf6b0a8e64330fad438ee0d -rb287d600f875018ca1e9309fb3e0008f2e69310d --- sources/gui/qml/dialogs/VitalsEntry.qml (.../VitalsEntry.qml) (revision eadda1cc1ad9d62aecf6b0a8e64330fad438ee0d) +++ sources/gui/qml/dialogs/VitalsEntry.qml (.../VitalsEntry.qml) (revision b287d600f875018ca1e9309fb3e0008f2e69310d) @@ -16,6 +16,7 @@ // Qt import QtQuick 2.12 import QtQuick.Controls 2.12 +import QtQuick.VirtualKeyboard 2.1 // Project // Qml imports @@ -79,6 +80,18 @@ labelText: "Heart Rate (BPM)" } + InputPanel { id: _keyboard + width: Variables.vitalsKeyboardWidth + visible: false + z: 1 + anchors.top: _pulse.bottom + anchors.horizontalCenter: _pulse.horizontalCenter + + onActiveChanged: { + visible = !visible + } + } + Row { id: _buttons spacing: Variables.buttonSpacing; anchors {