Warning, /maui/mauikit/examples/Holder.qml is written in an unsupported language. File is not indexed.

0001 import QtQuick
0002 import QtQuick.Controls
0003 import org.mauikit.controls as Maui
0004 
0005 Maui.ApplicationWindow
0006 {
0007     id: root
0008 
0009     Maui.Page
0010     {
0011         anchors.fill: parent
0012 
0013         Maui.Controls.showCSD: true
0014 
0015         Maui.Holder
0016         {
0017             anchors.fill: parent
0018 
0019             title: "Holder"
0020             body: "Placeholder message."
0021 
0022             emoji: "dialog-warning"
0023             isMask: false
0024 
0025             Action
0026             {
0027                 text: "Action1"
0028             }
0029 
0030             Action
0031             {
0032                 text: "Action2"
0033             }
0034 
0035             Action
0036             {
0037                 text: "Action3"
0038             }
0039         }
0040     }
0041 }