DataPickerPopup
Use a date picker to let the user select a date.
Properties
title
(in string): The text that is displayed at the top of the picker.date
: (in structDate
): Set the initial displayed date.
Callbacks
canceled()
: The cancel button was clicked.accepted(Date)
The ok button was clicked.
Example
Struct Date
Defines a date with day, month, and year.
Fields
day
(int): The day value (range from 1 to 31).month
(int): The month value (range from 1 to 12).year
(int): The year value.