lqml/examples/wear-os-gps/qml/ext/MainView.qml
2022-07-05 17:59:16 +02:00

19 lines
391 B
QML

import QtQuick 2.15
import QtQuick.Controls 2.15
import "." as Ext
Rectangle {
color: "black"
Ext.Gauge {}
Column {
anchors.horizontalCenter: parent.horizontalCenter
anchors.bottom: parent.bottom
anchors.bottomMargin: 10
spacing: -5
Ext.LogText { objectName: "distance"; font.pixelSize: 48 }
Ext.LogText { objectName: "accuracy"; font.pixelSize: 24 }
}
}