Merge remote-tracking branch 'origin/master'

This commit is contained in:
Max 2018-12-15 19:47:16 +01:00
commit e1ae773ec0
1 changed files with 0 additions and 82 deletions

View File

@ -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
}
}
}
}
}