41 lines
676 B
QML
41 lines
676 B
QML
import QtQuick
|
|
import QtQuick.Controls
|
|
import "."
|
|
|
|
StackView {
|
|
pushEnter: Transition {
|
|
PropertyAnimation {
|
|
property: "opacity"
|
|
from: 0
|
|
to: 1
|
|
duration: PStyle.animationDuration
|
|
}
|
|
}
|
|
|
|
pushExit: Transition {
|
|
PropertyAnimation {
|
|
property: "opacity"
|
|
from: 1
|
|
to: 0
|
|
duration: PStyle.animationDuration
|
|
}
|
|
}
|
|
|
|
popEnter: Transition {
|
|
PropertyAnimation {
|
|
property: "opacity"
|
|
from: 0
|
|
to: 1
|
|
duration: PStyle.animationDuration
|
|
}
|
|
}
|
|
|
|
popExit: Transition {
|
|
PropertyAnimation {
|
|
property: "opacity"
|
|
from: 1
|
|
to: 0
|
|
duration: PStyle.animationDuration
|
|
}
|
|
}
|
|
} |