mirror of
https://gitlab.com/eql/lqml.git
synced 2025-12-06 02:30:38 -08:00
17 lines
261 B
QML
17 lines
261 B
QML
import QtQuick 2.15
|
|
import "ext/" as Ext
|
|
|
|
Rectangle {
|
|
width: 210 // for desktop
|
|
height: 210
|
|
color: "black"
|
|
|
|
Ext.HeartRate {}
|
|
|
|
Keys.onPressed: {
|
|
if (event.key === Qt.Key_Back) {
|
|
event.accepted = true
|
|
Lisp.call("qml:qquit")
|
|
}
|
|
}
|
|
}
|