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

0001 //! [Adding a resource]
0002 import QtQuick
0003 import QtQuick.Controls
0004 import QtQuick.Layouts
0005 import org.mauikit.controls as Maui
0006 
0007 Maui.ApplicationWindow
0008 {
0009     id: root
0010 
0011     Maui.Page
0012     {
0013         id: _page
0014 
0015         anchors.fill: parent
0016         Maui.Controls.showCSD: true
0017         Maui.Theme.colorSet: Maui.Theme.Complementary
0018 
0019         Maui.ScrollColumn
0020         {
0021             anchors.fill: parent
0022 
0023             Rectangle
0024             {
0025                 implicitHeight: 600
0026                 Layout.fillWidth: true
0027                 color: "purple"
0028             }
0029 
0030             Rectangle
0031             {
0032                 implicitHeight: 200
0033                 Layout.fillWidth: true
0034                 color: "orange"
0035             }
0036 
0037             Rectangle
0038             {
0039                 implicitHeight: 300
0040                 Layout.fillWidth: true
0041                 color: "yellow"
0042             }
0043         }
0044     }
0045 }
0046 //! [Adding a resource]