mirror of
https://github.com/status-im/status-desktop.git
synced 2025-02-23 12:08:53 +00:00
66 lines
1.7 KiB
QML
66 lines
1.7 KiB
QML
import QtQuick 2.15
|
|
import QtQuick.Controls 2.15
|
|
|
|
import StatusQ.Core.Utils 0.1
|
|
import StatusQ.Core.Theme 0.1
|
|
|
|
RecursiveStackView {
|
|
id: root
|
|
|
|
readonly property bool backAvailable:
|
|
topLevelItem ? (topLevelItem.backAvailableHint ?? true) : false
|
|
|
|
QtObject {
|
|
id: d
|
|
|
|
readonly property int opacityDuration: 50
|
|
readonly property int swipeDuration: 400
|
|
}
|
|
|
|
background: Rectangle {
|
|
color: Theme.palette.background
|
|
}
|
|
|
|
pushEnter: Transition {
|
|
ParallelAnimation {
|
|
NumberAnimation {
|
|
property: "opacity"
|
|
from: 0; to: 1
|
|
duration: d.opacityDuration
|
|
easing.type: Easing.InQuint
|
|
}
|
|
NumberAnimation {
|
|
property: "x"
|
|
from: (root.mirrored ? -0.3 : 0.3) * root.width; to: 0
|
|
duration: d.swipeDuration
|
|
easing.type: Easing.OutCubic
|
|
}
|
|
}
|
|
}
|
|
pushExit: Transition {
|
|
NumberAnimation {
|
|
property: "opacity"; from: 1; to: 0
|
|
duration: d.opacityDuration
|
|
easing.type: Easing.OutQuint
|
|
}
|
|
}
|
|
popEnter: Transition {
|
|
ParallelAnimation {
|
|
NumberAnimation {
|
|
property: "opacity"
|
|
from: 0; to: 1
|
|
duration: d.opacityDuration
|
|
easing.type: Easing.InQuint
|
|
}
|
|
NumberAnimation {
|
|
property: "x"
|
|
from: (root.mirrored ? -0.3 : 0.3) * -root.width; to: 0
|
|
duration: d.swipeDuration; easing.type: Easing.OutCubic
|
|
}
|
|
}
|
|
}
|
|
popExit: pushExit
|
|
replaceEnter: pushEnter
|
|
replaceExit: pushExit
|
|
}
|