diff --git a/CalculatorMainPage.qml b/CalculatorMainPage.qml index a36d50a..0d1bbd4 100644 --- a/CalculatorMainPage.qml +++ b/CalculatorMainPage.qml @@ -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