Warning, /maui/mauikit/src/style.5/StackView.qml is written in an unsupported language. File is not indexed.

0001 import QtQuick 2.15
0002 import org.mauikit.controls 1.3 as Maui
0003 
0004 import QtQuick.Templates 2.15 as T
0005 
0006 T.StackView
0007 {
0008     id: control
0009     focus: true
0010     clip: false
0011     
0012     pushEnter: Transition
0013     {
0014         PropertyAnimation
0015         {
0016             property: "opacity"
0017             from: 0
0018             to:1
0019             duration: 200
0020         }
0021     }
0022     
0023     pushExit: Transition
0024     {
0025         PropertyAnimation
0026         {
0027             property: "opacity"
0028             from: 1
0029             to:0
0030             duration: 200
0031         }
0032     }
0033     
0034     popEnter: Transition
0035     {
0036         PropertyAnimation
0037         {
0038             property: "opacity"
0039             from: 0
0040             to:1
0041             duration: 200
0042         }
0043     }
0044     
0045     popExit: Transition
0046     {
0047         PropertyAnimation
0048         {
0049             property: "opacity"
0050             from: 1
0051             to:0
0052             duration: 200
0053         }
0054     }
0055 }