mirror of
https://github.com/logos-storage/logos-storage-app-skeleton.git
synced 2026-06-14 12:29:26 +00:00
44 lines
888 B
QML
44 lines
888 B
QML
|
|
import QtQuick
|
||
|
|
import QtQuick.Controls
|
||
|
|
|
||
|
|
Item {
|
||
|
|
anchors.fill: parent
|
||
|
|
|
||
|
|
Rectangle {
|
||
|
|
anchors.fill: parent
|
||
|
|
anchors.leftMargin: 0
|
||
|
|
anchors.rightMargin: 0
|
||
|
|
anchors.topMargin: 0
|
||
|
|
anchors.bottomMargin: 0
|
||
|
|
color: "#202428"
|
||
|
|
}
|
||
|
|
|
||
|
|
Text {
|
||
|
|
text: qsTr("Storage UI")
|
||
|
|
anchors.verticalCenterOffset: 214
|
||
|
|
anchors.horizontalCenterOffset: -269
|
||
|
|
color: "white"
|
||
|
|
anchors.centerIn: parent
|
||
|
|
font.pointSize: 20
|
||
|
|
|
||
|
|
}
|
||
|
|
|
||
|
|
Text {
|
||
|
|
objectName: "status"
|
||
|
|
text: "..."
|
||
|
|
color: "white"
|
||
|
|
font.pointSize: 20
|
||
|
|
anchors.topMargin: 32
|
||
|
|
|
||
|
|
}
|
||
|
|
|
||
|
|
Button {
|
||
|
|
objectName: "startButton"
|
||
|
|
anchors.horizontalCenter: parent.horizontalCenter
|
||
|
|
anchors.top: parent.top
|
||
|
|
anchors.topMargin: 395
|
||
|
|
anchors.horizontalCenterOffset: -270
|
||
|
|
text: "Stop"
|
||
|
|
}
|
||
|
|
}
|