Warning, /maui/mauikit/examples/AppViews.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.AppViews
0011     {
0012         id: _page
0013         anchors.fill: parent
0014         Maui.Controls.showCSD: true
0015         headBar.forceCenterMiddleContent: true
0016 
0017        Rectangle
0018        {
0019            Maui.AppView.title: "View1"
0020            Maui.AppView.iconName: "love"
0021 
0022            color: "blue"
0023        }
0024 
0025        Rectangle
0026        {
0027            Maui.AppView.title: "View2"
0028            Maui.AppView.iconName: "folder"
0029            Maui.AppView.badgeText: "30"
0030            color: "pink"
0031        }
0032 
0033        Rectangle
0034        {
0035            Maui.AppView.title: "View3"
0036            Maui.AppView.iconName: "tag"
0037 
0038            color: "blue"
0039        }
0040     }
0041 }