summaryrefslogtreecommitdiffstats
path: root/examples/combo_box (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Update all `examples` to Rust 2024Libravatar Héctor Ramón Jiménez2025-02-211-1/+1
|
* 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
|
* Merge branch 'master' into explicit-text-cachingLibravatar Héctor Ramón Jiménez2023-09-101-1/+2
|\
| * Use workspace dependencies and package inheritanceLibravatar Héctor Ramón Jiménez2023-09-041-1/+2
| | | | | | | | | | | | We are also taking this as a chance to synchronize the versions of all the crates! Because of this, we will skip the `0.11` version.
* | 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 gif to exampleLibravatar Joao Freitas2023-07-262-1/+1
|
* Add ComboBox widgetLibravatar Joao Freitas2023-07-263-0/+170
- Widget implementation - Widget helper - Example