Add StorageView qml

This commit is contained in:
Arnaud 2026-01-29 12:01:06 +04:00
parent 1a11c0df8e
commit 7a4e2faeae
No known key found for this signature in database
GPG Key ID: 20E40A5D3110766F

View File

@ -1,8 +1,10 @@
import QtQuick
import QtQuick.Controls
import QtQuick.Layouts
import StorageBackend
Item {
anchors.fill: parent
id: root
Rectangle {
anchors.fill: parent
@ -12,15 +14,12 @@ Item {
anchors.bottomMargin: 0
color: "#202428"
}
Text {
text: qsTr("Storage UI")
anchors.verticalCenterOffset: 214
anchors.horizontalCenterOffset: -269
color: "white"
color: "black"
anchors.centerIn: parent
font.pointSize: 20
}
Text {
@ -29,15 +28,11 @@ Item {
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
anchors.leftMargin: 50
text: "Stop"
}
}