Warning, /maui/mauikit/examples/CollageItem.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 anchors.fill: parent
0014 Maui.Controls.showCSD: true
0015 headBar.forceCenterMiddleContent: true
0016
0017 Maui.GridBrowser
0018 {
0019 anchors.fill: parent
0020 model: 30
0021
0022 itemSize: 200
0023
0024 delegate: Item
0025 {
0026 width: GridView.view.cellWidth
0027 height: GridView.view.cellHeight
0028
0029 Maui.CollageItem
0030 {
0031 anchors.fill: parent
0032 anchors.margins: Maui.Style.space.small
0033
0034 label1.text: "Demo"
0035 label2.text: index
0036 images: index %2 === 0 ? ['/home/camiloh/Downloads/street-1234360.jpg', '/home/camiloh/Downloads/flat-coated-retriever-1339154.jpg', '/home/camiloh/Downloads/5911329.jpeg'] : ['/home/camiloh/Downloads/street-1234360.jpg', '/home/camiloh/Downloads/flat-coated-retriever-1339154.jpg', '/home/camiloh/Downloads/5911329.jpeg', '/home/camiloh/Pictures/LastLights_by_Mushcube/LastLightsScreenPreview.png']
0037 }
0038 }
0039 }
0040 }
0041 }
0042