Warning, /plasma/qqc2-breeze-style/style/qtquickcontrols/StackView.qml is written in an unsupported language. File is not indexed.

0001 // NOTE: check/replace this
0002 import QtQuick
0003 import QtQuick.Controls as Controls
0004 import QtQuick.Templates as T
0005 
0006 T.StackView {
0007     id: control
0008 
0009     popEnter: Transition {
0010         XAnimator { from: (control.mirrored ? -1 : 1) * -control.width; to: 0; duration: 400; easing.type: Easing.OutCubic }
0011     }
0012 
0013     popExit: Transition {
0014         XAnimator { from: 0; to: (control.mirrored ? -1 : 1) * control.width; duration: 400; easing.type: Easing.OutCubic }
0015     }
0016 
0017     pushEnter: Transition {
0018         XAnimator { from: (control.mirrored ? -1 : 1) * control.width; to: 0; duration: 400; easing.type: Easing.OutCubic }
0019     }
0020 
0021     pushExit: Transition {
0022         XAnimator { from: 0; to: (control.mirrored ? -1 : 1) * -control.width; duration: 400; easing.type: Easing.OutCubic }
0023     }
0024 
0025     replaceEnter: Transition {
0026         XAnimator { from: (control.mirrored ? -1 : 1) * control.width; to: 0; duration: 400; easing.type: Easing.OutCubic }
0027     }
0028 
0029     replaceExit: Transition {
0030         XAnimator { from: 0; to: (control.mirrored ? -1 : 1) * -control.width; duration: 400; easing.type: Easing.OutCubic }
0031     }
0032 }