Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | combo_box: Do not draw empty menu overlay | 2024-04-01 | 1 | -28/+37 | |
| | | | | Fixes #2311 | ||||
* | Make defaults of composite widgets configurable | 2024-03-25 | 1 | -3/+14 | |
| | |||||
* | Use `Catalog` approach for all widgets | 2024-03-24 | 1 | -55/+64 | |
| | |||||
* | Use closures for `PickList::style` | 2024-03-12 | 1 | -10/+10 | |
| | |||||
* | Use closures for `TextInput::style` | 2024-03-12 | 1 | -21/+11 | |
| | |||||
* | Inline helper functions in `widget` modules | 2024-03-08 | 1 | -4/+4 | |
| | |||||
* | Make fields of `Style` structs public | 2024-03-07 | 1 | -2/+2 | |
| | |||||
* | Leverage `DefaultStyle` traits instead of `Default` | 2024-03-07 | 1 | -12/+18 | |
| | |||||
* | Move `Theme` type to `iced_core` | 2024-03-07 | 1 | -2/+1 | |
| | |||||
* | Use `Style` struct pattern instead of trait for all widgets | 2024-03-06 | 1 | -8/+7 | |
| | |||||
* | Simplify theming for `PickList`, `ComboBox`, and `Menu` widgets | 2024-03-06 | 1 | -33/+56 | |
| | |||||
* | Simplify theming for `TextInput` widget | 2024-03-05 | 1 | -15/+12 | |
| | |||||
* | Simplify theming for `Scrollable` widget | 2024-03-05 | 1 | -2/+2 | |
| | |||||
* | Simplify theming for `Container` widget | 2024-03-05 | 1 | -2/+2 | |
| | |||||
* | Remove `position` from `overlay::Element` | 2024-02-01 | 1 | -2/+3 | |
| | |||||
* | Convert `Renderer::Theme` to generic `Widget` type | 2024-01-21 | 1 | -25/+32 | |
| | |||||
* | Refactor `KeyCode` into `Key` and `Location` | 2024-01-16 | 1 | -7/+7 | |
| | |||||
* | Replace `width` and `height` with `Widget::size` | 2024-01-10 | 1 | -7/+5 | |
| | |||||
* | Clip text to `viewport` bounds instead of layout bounds | 2023-12-01 | 1 | -1/+2 | |
| | |||||
* | Fix `ComboBox` widget panic on wasm | 2023-09-10 | 1 | -1/+1 | |
| | |||||
* | Fix `ComboBox` widget not displaying selection text | 2023-09-10 | 1 | -2/+23 | |
| | |||||
* | Merge branch 'master' into explicit-text-caching | 2023-09-10 | 1 | -3/+5 | |
|\ | |||||
| * | Fix majority of unresolved documentation links | 2023-09-09 | 1 | -3/+5 | |
| | | |||||
* | | Make `widget::Tree` mutable in `Widget::layout` | 2023-08-30 | 1 | -1/+1 | |
| | | |||||
* | | Implement explicit text caching in the widget state tree | 2023-08-30 | 1 | -92/+75 | |
|/ | |||||
* | Fix `clippy` lints for Rust 1.72 | 2023-08-26 | 1 | -1/+1 | |
| | |||||
* | Update widget/src/combo_box.rs | 2023-07-31 | 1 | -1/+1 | |
| | | | Co-authored-by: Héctor Ramón <hector0193@gmail.com> | ||||
* | cycle combobox with keybinds | 2023-07-31 | 1 | -9/+34 | |
| | |||||
* | Rename `on_selection` to `on_option_hovered` in `combo_box` | 2023-07-26 | 1 | -6/+6 | |
| | |||||
* | Fix `on_option_hovered` support in `ComboBox` | 2023-07-26 | 1 | -11/+31 | |
| | |||||
* | Use default padding of `TextInput` in `ComboBox` | 2023-07-26 | 1 | -1/+1 | |
| | |||||
* | Add `Viewport` to `on_event` for `ComboBox` | 2023-07-26 | 1 | -0/+3 | |
| | |||||
* | Swap unwrap_or_else to unwrap_or_default | 2023-07-26 | 1 | -2/+2 | |
| | |||||
* | Add ComboBox widget | 2023-07-26 | 1 | -0/+716 | |
- Widget implementation - Widget helper - Example |