added gameProgress Label

This commit is contained in:
Max 2018-11-27 17:15:34 +01:00
parent 402ab0d509
commit 6de4ed1ae2

View file

@ -10,10 +10,21 @@ Page {
Label { Label {
id: num id: num
anchors.centerIn: parent anchors.centerIn: parent
font.pixelSize: calculator.height * 0.6 font.pixelSize: parent.height * 0.6
text: calculator.nextNum text: calculator.nextNum
} }
Label {
id: gameProcess
text: calculator.actualNumCount + " of " + calculator.numCount
anchors {
right: parent.right
rightMargin: parent.width * 0.025
bottom: parent.bottom
bottomMargin: parent.height * 0.05
}
}
ProgressBar { ProgressBar {
id: prog id: prog