Fluid
Loading...
Searching...
No Matches
DatePickerDialog Class Reference

Dialog to select a single date. More...

Inheritance diagram for DatePickerDialog:
Inheritance graph
[legend]
Collaboration diagram for DatePickerDialog:
Collaboration graph
[legend]

Detailed Description

Dialog to select a single date.

Dialog to select a single date from a calendar.

import QtQuick
import Fluid as Fluid
Item {
width: 600
height: 600
Fluid.Button {
anchors.centerIn: parent
text: qsTr("Open")
onClicked: datePickerDialog.open()
}
id: datePickerDialog
onAccepted: {
console.log(selectedDate);
}
standardButtons: Fluid.DialogButtonBox.Ok | Fluid.DialogButtonBox.Cancel
}
}
Dialog to select a single date.
Definition DatePickerDialog.qml:50

For more information you can read the Material Design guidelines.


The documentation for this class was generated from the following file: