Warning, /maui/mauikit-calendar/examples/TimePicker.qml is written in an unsupported language. File is not indexed.

0001 import QtQuick
0002 import QtQuick.Controls
0003 
0004 import org.mauikit.controls as Maui
0005 import org.mauikit.calendar as MC
0006 
0007 import org.mauikit.dummy2 as Dummy
0008 
0009 Maui.ApplicationWindow
0010 {
0011     id: root
0012     title: _view.title
0013 
0014     Maui.Page
0015     {
0016         anchors.fill: parent
0017         Maui.Controls.showCSD: true
0018         title: root.title
0019 
0020         MC.TimePicker
0021         {
0022             id: _view
0023             anchors.fill: parent
0024             onAccepted: (time) => console.log("Time Picked, ", time)
0025         }
0026     }
0027 }
0028