Files
WallReel/src/ui/Pages/LoadingScreen.qml
T
2026-02-16 14:22:03 +01:00

25 lines
519 B
QML

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
}
}