added gameProgress Label
This commit is contained in:
parent
402ab0d509
commit
6de4ed1ae2
1 changed files with 12 additions and 1 deletions
|
@ -10,10 +10,21 @@ Page {
|
|||
Label {
|
||||
id: num
|
||||
anchors.centerIn: parent
|
||||
font.pixelSize: calculator.height * 0.6
|
||||
font.pixelSize: parent.height * 0.6
|
||||
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 {
|
||||
id: prog
|
||||
|
|
Loading…
Reference in a new issue