The remaining widgets will be familiar to to any developer of desktop graphical applications, or indeed anyone who uses them. Provided here is a quick overview for the features or limitations of each:
- Button: A standard pushbutton with a label, and an onClicked callback
- Checkbox: A toggled entry that is either checked or unchecked; an onToggled callback will trigger on change
- Combobox: A widget that provides a list of strings to select from
- DateTimePicker: A field for entering date and/or time—the configuration is set by different constructor functions
- Entry: A single-line text-entry widget, which can be read-only; it supports an onChanged handler for change events
- Label: A simple read-only text component for annotating the user ...