15 lines
274 B
QML
15 lines
274 B
QML
|
import QtQuick 2.13
|
||
|
|
||
|
import StatusQ.Core 0.1
|
||
|
import StatusQ.Core.Theme 0.1
|
||
|
|
||
|
Item {
|
||
|
id: root
|
||
|
StatusBaseText {
|
||
|
anchors.centerIn: parent
|
||
|
color: Theme.palette.baseColor1
|
||
|
text: qsTr("Positions will appear here")
|
||
|
font.pixelSize: 15
|
||
|
}
|
||
|
}
|