Adjusting demo app to take screenshots.

This commit is contained in:
2025-06-25 17:40:56 -05:00
parent 086a3f226b
commit d9d92c2a28
2 changed files with 21 additions and 2 deletions

View File

@@ -87,8 +87,15 @@ This is some information about the Widget class.
<details><summary>Checkbox</summary>
* The `Checkbox` widget provides a simple binary toggle input, allowing users to select or deselect an option.
* Typically Consists of a small square box
* Typically Consists of a small square box.
* When clicked, the box's state flips, indicating whether the corresponding option is enabled or disabled.
* Also see LabeledCheckbox for a Checkbox with integrated text.
* Usages:
* Enabling / Disabling Features
* Opt-in / Opt-out Choices:
* Multiple Selections - When presented in a group, checkboxes allow users to select zero, one or multiple independent options simultaneously.
* Contrast with Radio Buttons, which allow only one selection from a group.
* Boolean Settings
</details>