1
0
mirror of https://gitlab.com/kelteseth/ScreenPlay.git synced 2024-09-15 06:52:34 +02:00

Add install second navigation fade in from top

This commit is contained in:
Elias 2018-12-16 18:28:12 +01:00
parent 63f2d81489
commit 4f304de0e2

View File

@ -4,9 +4,9 @@ import QtQuick.Controls 2.3
import QtQuick.Controls.Styles 1.4
import QtGraphicalEffects 1.0
Item {
id: pageInstalled
state: "out"
signal setSidebaractiveItem(var screenId, var type)
signal setNavigationItem(var pos)
@ -19,6 +19,7 @@ Item {
installedListFilter.sortByRoleType("All")
installedListModel.reset()
installedListModel.loadScreens()
pageInstalled.state = "in"
}
Connections {
@ -74,6 +75,7 @@ Item {
height: 82
width: parent.width
property bool isVisible: false
opacity: 0
onIsVisibleChanged: {
if (isVisible) {
txtHeader.color = "orange"
@ -84,6 +86,22 @@ Item {
}
}
Timer {
interval: 400
running: true
onTriggered: {
animFadeIn.start()
}
}
PropertyAnimation on opacity {
id:animFadeIn
from:0
to:1
running: false
duration: 1000
}
Text {
id: txtHeader
text: qsTr("Pull to refresh!")
@ -296,5 +314,34 @@ Item {
}
}
states: [
State {
name: "out"
PropertyChanges {
target: navWrapper
anchors.topMargin: -115
}
},
State {
name: "in"
PropertyChanges {
target: navWrapper
anchors.topMargin: 0
}
}
]
transitions: [
Transition {
from: "out"
to: "in"
NumberAnimation {
target: navWrapper
property: "anchors.topMargin"
duration: 400
easing.type: Easing.InOutQuart
}
}
]
}