feat: add animation to inbox
This commit is contained in:
parent
345b9b4254
commit
e492b0adab
3 changed files with 30 additions and 2 deletions
|
@ -5,11 +5,13 @@ import "base"
|
||||||
BRectangle {
|
BRectangle {
|
||||||
height: clock.height * 1.5
|
height: clock.height * 1.5
|
||||||
|
|
||||||
Rectangle {
|
Item {
|
||||||
id: clock
|
id: clock
|
||||||
height: hours.height + minutes.height
|
height: hours.height + minutes.height
|
||||||
|
width: parent.width
|
||||||
anchors.centerIn: parent
|
anchors.centerIn: parent
|
||||||
anchors.verticalCenter: parent.verticalCenter
|
anchors.verticalCenter: parent.verticalCenter
|
||||||
|
|
||||||
Text {
|
Text {
|
||||||
id: hours
|
id: hours
|
||||||
anchors.horizontalCenter: parent.horizontalCenter
|
anchors.horizontalCenter: parent.horizontalCenter
|
||||||
|
|
|
@ -51,7 +51,7 @@ PanelWindow {
|
||||||
topRightRadius: 10
|
topRightRadius: 10
|
||||||
border.color: "transparent"
|
border.color: "transparent"
|
||||||
height: parent.height
|
height: parent.height
|
||||||
width: NyshState.dashOpen ? maxSize : 0
|
width: NyshState.dashOpen ? maxSize : 1
|
||||||
clip: true
|
clip: true
|
||||||
MouseArea {
|
MouseArea {
|
||||||
anchors.fill: parent
|
anchors.fill: parent
|
||||||
|
@ -83,6 +83,7 @@ PanelWindow {
|
||||||
Layout.fillHeight: true
|
Layout.fillHeight: true
|
||||||
Layout.fillWidth: true
|
Layout.fillWidth: true
|
||||||
height: parent.height
|
height: parent.height
|
||||||
|
width: parent.width
|
||||||
Layout.margins: 15
|
Layout.margins: 15
|
||||||
clip: true
|
clip: true
|
||||||
|
|
||||||
|
@ -101,6 +102,7 @@ PanelWindow {
|
||||||
Layout.fillHeight: true
|
Layout.fillHeight: true
|
||||||
Layout.fillWidth: true
|
Layout.fillWidth: true
|
||||||
height: parent.height
|
height: parent.height
|
||||||
|
width: parent.width
|
||||||
Layout.margins: 15
|
Layout.margins: 15
|
||||||
Layout.alignment: Qt.AlignBottom
|
Layout.alignment: Qt.AlignBottom
|
||||||
|
|
||||||
|
|
|
@ -26,4 +26,28 @@ ListView {
|
||||||
toast.notif.dismiss();
|
toast.notif.dismiss();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
addDisplaced: Transition {
|
||||||
|
NumberAnimation {
|
||||||
|
properties: "x,y"
|
||||||
|
duration: 100
|
||||||
|
}
|
||||||
|
}
|
||||||
|
remove: Transition {
|
||||||
|
PropertyAction {
|
||||||
|
property: "ListView.delayRemove"
|
||||||
|
value: true
|
||||||
|
}
|
||||||
|
ParallelAnimation {
|
||||||
|
NumberAnimation {
|
||||||
|
property: "opacity"
|
||||||
|
to: 0
|
||||||
|
duration: 200
|
||||||
|
}
|
||||||
|
}
|
||||||
|
PropertyAction {
|
||||||
|
property: "ListView.delayRemove"
|
||||||
|
value: true
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue