39 lines
693 B
QML
Raw Normal View History

2026-01-26 12:28:37 +04:00
import QtQuick
import QtQuick.Controls
2026-01-29 12:01:06 +04:00
import QtQuick.Layouts
import StorageBackend
2026-01-26 12:28:37 +04:00
Item {
2026-01-29 12:01:06 +04:00
id: root
2026-01-26 12:28:37 +04:00
Rectangle {
anchors.fill: parent
anchors.leftMargin: 0
anchors.rightMargin: 0
anchors.topMargin: 0
anchors.bottomMargin: 0
color: "#202428"
}
2026-01-29 12:01:06 +04:00
2026-01-26 12:28:37 +04:00
Text {
text: qsTr("Storage UI")
2026-01-29 12:01:06 +04:00
color: "black"
2026-01-26 12:28:37 +04:00
anchors.centerIn: parent
font.pointSize: 20
}
Text {
objectName: "status"
text: "..."
color: "white"
font.pointSize: 20
anchors.topMargin: 32
}
Button {
objectName: "startButton"
2026-01-29 12:01:06 +04:00
anchors.leftMargin: 50
2026-01-26 12:28:37 +04:00
text: "Stop"
}
}