Warning, /maui/mauikit/examples/Page.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         id: _page
0012         anchors.fill: parent
0013         showCSDControls: true
0014 
0015         headBar.rightContent: Switch
0016         {
0017             text: "Alt Header"
0018             checked: _page.altHeader
0019             onToggled: _page.altHeader = checked
0020         }
0021     }
0022 }