From cc81638ab93db1e046a51a658a625f0a76768900 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Max=20Gr=C3=BCtzner?= Date: Sat, 15 Dec 2018 19:46:02 +0100 Subject: [PATCH] Delete CalculatePageStart.qml --- CalculatePageStart.qml | 82 ------------------------------------------ 1 file changed, 82 deletions(-) delete mode 100644 CalculatePageStart.qml 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 - } - } - } - } -}