summaryrefslogtreecommitdiffstats
path: root/examples/combo_box/src/main.rs (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Re-export variants of `Length` and `alignment` typesLibravatar Héctor Ramón Jiménez2024-07-121-3/+3
|
* Introduce helper methods for alignment for all widgetsLibravatar Héctor Ramón Jiménez2024-07-121-2/+2
|
* Introduce `center` widget helperLibravatar Héctor Ramón Jiménez2024-05-031-7/+2
| | | | | | | | ... and also make `center_x` and `center_y` set `width` and `height` to `Length::Fill`, respectively. This targets the most common use case when centering things and removes a bunch of boilerplate as a result.
* Introduce `Program` APILibravatar Héctor Ramón Jiménez2024-03-161-9/+9
|
* Make `horizontal_space` and `vertical_space` fill by defaultLibravatar Héctor Ramón Jiménez2024-02-151-1/+1
|
* Implement explicit text caching in the widget state treeLibravatar Héctor Ramón Jiménez2023-08-301-1/+0
|
* Fix `on_option_hovered` support in `ComboBox`Libravatar Héctor Ramón Jiménez2023-07-261-10/+10
|
* Add ComboBox widgetLibravatar Joao Freitas2023-07-261-0/+143
- Widget implementation - Widget helper - Example