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

0001 import QtQuick
0002 import QtQuick.Controls
0003 import QtQuick.Layouts
0004 import org.mauikit.controls as Maui
0005 
0006 Maui.ApplicationWindow
0007 {
0008     id: root
0009 
0010     Maui.Page
0011     {
0012         id: _page
0013 
0014         anchors.fill: parent
0015         Maui.Controls.showCSD: true
0016         Maui.Theme.colorSet: Maui.Theme.Window
0017         headBar.forceCenterMiddleContent: true
0018 
0019         Button
0020         {
0021             anchors.centerIn: parent
0022             text: "Doodle Me!"
0023             onClicked: _doodle.open()
0024         }
0025     }
0026 
0027     Maui.Doodle
0028     {
0029         id: _doodle
0030         sourceItem: _page
0031     }
0032 }
0033