Warning, /maui/mauikit/examples/TextFieldPopup.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         anchors.fill: parent
0013 
0014         Maui.Controls.showCSD: true
0015         Maui.Theme.colorSet: Maui.Theme.Window
0016 
0017         footBar.middleContent: Maui.TextFieldPopup
0018         {
0019             position: ToolBar.Footer
0020 
0021             Layout.fillWidth: true
0022             Layout.maximumWidth: 500
0023             Layout.alignment: Qt.AlignHCenter
0024 
0025             placeholderText: "Search for Something."
0026 
0027             Maui.Holder
0028             {
0029                 anchors.fill: parent
0030 
0031                 visible: true
0032                 title: "Something Here"
0033                 body: "List whatever in here."
0034                 emoji: "edit-find"
0035             }
0036         }
0037     }
0038 }
0039