-
Notifications
You must be signed in to change notification settings - Fork 2
/
FadeOnVisible.qml
50 lines (49 loc) · 1.29 KB
/
FadeOnVisible.qml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
import QtQuick 2.0
Item {
states: [
State {
name: "VISIBLE"
when: accountList.count === 0
PropertyChanges {
target: emptyAccountListPlaceHolder
visible: true
}
},
State {
name: "INVISIBLE"
when: accountList.count > 0
PropertyChanges {
target: emptyAccountListPlaceHolder
visible: false
}
}
]
transitions: [
Transition {
from: "VISIBLE"; to: "INVISIBLE"
SequentialAnimation {
PropertyAnimation {
target: emptyAccountListPlaceHolder
property: "opacity"
from: 1; to: 0
}
PropertyAction {
property: "visible"
}
}
},
Transition {
from: "INVISIBLE"; to: "VISIBLE"
SequentialAnimation {
PropertyAction {
property: "visible"
}
PropertyAnimation {
target: emptyAccountListPlaceHolder
property: "opacity"
from: 0; to: 1
}
}
}
]
}