diff --git a/CalculatePageStart.qml b/CalculatePageStart.qml deleted file mode 100644 index 3d2a630..0000000 --- a/CalculatePageStart.qml +++ /dev/null @@ -1,82 +0,0 @@ -import QtQuick 2.9 -import QtQuick.Controls 2.4 - -Page { - Item { - id: calculate - anchors.fill: parent - - state: "idle" - - states: [ - State { - name: "idle" - PropertyChanges { - target: mainStack - currPage: startPageCalculatorComp - } - }, - State { - name: "calculate" - PropertyChanges { - target: mainStack - currPage: mainCalculatorPageComp - - } - } - ] - - StackView { - id: calculateStack - - property var currPage - - anchors.fill: parent - - onCurrPageChanged: { - calculateStack.replace(currPage) - } - onCurrentItemChanged: { - calculateStack.currentItem.pageOpened() - } - - Component { - id: startPageCalculatorComp - StartPageCalculator { - id: startPage - } - } - - Component { - id: GamePageCalculatorComp - MainCalculatePage { - id: mainCalculatorPage - } - } - - Component { - id: - } - - replaceExit: Transition { - NumberAnimation { - from: 1 - to: 0 - property: "opacity" - duration: 200 - easing.type: Easing.InOutQuad - } - } - - replaceEnter: Transition { - NumberAnimation { - from: 0 - to: 1 - property: "opacity" - duration: 200 - easing.type: Easing.InOutQuad - } - } - } - } -}