This commit is contained in:
2026-02-16 14:22:03 +01:00
parent ad742a38bd
commit 9e088c2024
38 changed files with 934 additions and 1973 deletions
+24
View File
@@ -0,0 +1,24 @@
import QtQuick
import QtQuick.Controls
Item {
property int currentValue: 0
property int totalValue: 100
Label {
anchors.bottom: loadingBar.top
anchors.horizontalCenter: loadingBar.horizontalCenter
anchors.bottomMargin: 0
text: currentValue + "/" + totalValue
font.pixelSize: 12
}
ProgressBar {
id: loadingBar
anchors.centerIn: parent
width: parent.width * 0.8
value: totalValue > 0 ? currentValue / totalValue : 0
}
}