Warning, /maui/mauikit/examples/FontPickerDialog.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         Maui.Controls.showCSD: true
0014 
0015         Button
0016         {
0017             anchors.centerIn: parent
0018             text: "Font Picker"
0019             onClicked: _fontPickerDialog.open()
0020         }
0021 
0022         Maui.FontPickerDialog
0023         {
0024             id: _fontPickerDialog
0025         }
0026     }
0027 
0028 }
0029