Warning, /maui/mauikit/demo.6/src/controls/AppViewsPage.qml is written in an unsupported language. File is not indexed.

0001 import QtQuick
0002 import QtQuick.Controls
0003 import QtQuick.Layouts
0004 
0005 import org.mauikit.controls as Maui
0006 
0007 DemoPage
0008 {
0009     id: control
0010     title: i18n("AppViews")
0011 
0012     Maui.SectionGroup
0013     {
0014         title: control.title
0015         spacing: control.spacing
0016 
0017         DemoSection
0018         {
0019             title: i18n("Static")
0020             column: Maui.AppViews
0021             {
0022                 id: _sideBar
0023 
0024                 Layout.fillWidth: true
0025                 implicitHeight: 500
0026 
0027                 Rectangle
0028                 {
0029                     Maui.AppView.title: i18n("Music")
0030                     Maui.AppView.iconName: "folder-music"
0031                     Maui.AppView.badgeText: "1+"
0032 
0033                     color: "blue"
0034                 }
0035 
0036                 Rectangle
0037                 {
0038                     Maui.AppView.title: i18n("Downloads")
0039                     Maui.AppView.iconName: "folder-downloads"
0040 
0041                     color: "pink"
0042                 }
0043 
0044 
0045                 Rectangle
0046                 {
0047                     Maui.AppView.title: i18n("Videos")
0048                     Maui.AppView.iconName: "folder-video"
0049 
0050                     color: "violet"
0051                 }
0052             }
0053         }
0054     }
0055 }