summaryrefslogtreecommitdiffstats
path: root/widget/src/helpers.rs (follow)
Commit message (Collapse)AuthorAgeFilesLines
...
* Fix `markdown` import in `iced_widget`Libravatar Héctor Ramón Jiménez2024-07-181-2/+1
|
* Create `markdown` widget helpers in `iced_widget`Libravatar Héctor Ramón Jiménez2024-07-181-0/+5
|
* Flesh out the `markdown` example a bit moreLibravatar Héctor Ramón Jiménez2024-07-181-2/+2
|
* Implement `rich_text` widget and `markdown` exampleLibravatar Héctor Ramón Jiménez2024-07-171-4/+35
|
* Re-export variants of `Length` and `alignment` typesLibravatar Héctor Ramón Jiménez2024-07-121-2/+2
|
* Introduce helper methods for alignment for all widgetsLibravatar Héctor Ramón Jiménez2024-07-121-2/+2
|
* Add `iced` widget helper to display the iced logo :comet:Libravatar Héctor Ramón Jiménez2024-07-111-0/+35
|
* Hide internal `Task` constructorsLibravatar Héctor Ramón Jiménez2024-07-051-3/+4
|
* Replace `Command` with a new `Task` API with chain supportLibravatar Héctor Ramón Jiménez2024-06-141-13/+7
|
* Merge branch 'master' into feat/text-macroLibravatar Héctor Ramón Jiménez2024-05-231-23/+494
|\
| * Ask for explicit `Length` in `center_*` methodsLibravatar Héctor Ramón Jiménez2024-05-131-2/+3
| |
| * Introduce `center` widget helperLibravatar Héctor Ramón Jiménez2024-05-031-0/+21
| | | | | | | | | | | | | | | | ... 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.
| * Propagate mouse movement and button releases unconditionally in `hover`Libravatar Héctor Ramón Jiménez2024-04-271-1/+8
| |
| * Fix top layer clipping in `hover` widgetLibravatar Héctor Ramón Jiménez2024-04-271-21/+24
| |
| * Fix ambiguous link in documentation of `hover` helperLibravatar Héctor Ramón Jiménez2024-04-271-0/+2
| |
| * Fix `overlay` behavior in `hover` widgetLibravatar Héctor Ramón Jiménez2024-04-271-11/+14
| |
| * Introduce `hover` widgetLibravatar Héctor Ramón Jiménez2024-04-271-1/+229
| |
| * Introduce `opaque` widget helperLibravatar Héctor Ramón Jiménez2024-04-251-1/+168
| |
| * Implement `Stack` widgetLibravatar Héctor Ramón Jiménez2024-04-251-1/+26
| | | | | | | | It can be used to stack elements on top of each other!
| * Rename `text::IntoContent` to `IntoFragment`Libravatar Héctor Ramón Jiménez2024-04-011-1/+1
| |
| * Reintroduce old `text` helper as `value` helperLibravatar Héctor Ramón Jiménez2024-04-011-0/+13
| |
| * Specialize `widget::text` helper with custom `IntoContent` traitLibravatar Héctor Ramón Jiménez2024-04-011-2/+2
| |
| * Use `Catalog` approach for all widgetsLibravatar Héctor Ramón Jiménez2024-03-241-16/+17
| |
| * Fine-tune `Catalog` approach for `button`, `checkbox`, and `svg`Libravatar Héctor Ramón Jiménez2024-03-241-2/+2
| |
| * Try catalog theming approach with `Button`Libravatar Héctor Ramón Jiménez2024-03-231-1/+1
| |
* | fix: make `text` macro example pass doctestLibravatar Richard Custodio2024-03-181-9/+26
| |
* | fix: remove empty macro usageLibravatar Richard Custodio2024-03-181-5/+4
| |
* | docs: improve `text` macro documentationLibravatar Richard Custodio2024-03-181-0/+17
| |
* | feat: add `text` macro to `widget::helpers`Libravatar Richard Custodio2024-03-181-0/+13
|/
* Use closures for `TextEditor::style`Libravatar Héctor Ramón Jiménez2024-03-121-4/+4
|
* Use closures for `ProgressBar::style`Libravatar Héctor Ramón Jiménez2024-03-121-3/+3
|
* Use closures for `TextInput::style`Libravatar Héctor Ramón Jiménez2024-03-121-2/+2
|
* Use closures for `Checkbox::style`Libravatar Héctor Ramón Jiménez2024-03-121-1/+1
|
* Use closures for `Toggler::style`Libravatar Héctor Ramón Jiménez2024-03-121-1/+1
|
* Use closures for `QRCode::style`Libravatar Héctor Ramón Jiménez2024-03-121-2/+4
|
* Use closures for `Slider::style` and `VerticalSlider::style`Libravatar Héctor Ramón Jiménez2024-03-121-2/+2
|
* Use closures for `Radio::style`Libravatar Héctor Ramón Jiménez2024-03-121-3/+3
|
* Use closures for `Text::style`Libravatar Héctor Ramón Jiménez2024-03-121-1/+2
|
* Use closures for `Rule::style`Libravatar Héctor Ramón Jiménez2024-03-121-4/+4
|
* Use closures for `Svg::style`Libravatar Héctor Ramón Jiménez2024-03-121-2/+4
|
* Use closures for `Scrollable::style`Libravatar Héctor Ramón Jiménez2024-03-121-1/+1
|
* Use closures for `Button::style`Libravatar Héctor Ramón Jiménez2024-03-121-1/+1
|
* Try using closures for `Container::style`Libravatar Héctor Ramón Jiménez2024-03-121-2/+2
| | | | | | `Box` should not allocate for zero-sized types; so we should not be incurring much overhead. Just a bit of indirection.
* Leverage `DefaultStyle` traits instead of `Default`Libravatar Héctor Ramón Jiménez2024-03-071-18/+18
|
* Use `Style` struct pattern instead of trait for all widgetsLibravatar Héctor Ramón Jiménez2024-03-061-23/+28
|
* Try `Style` newtype instead of trait for `Svg` widgetLibravatar Héctor Ramón Jiménez2024-03-061-1/+1
|
* Simplify theming for `PickList`, `ComboBox`, and `Menu` widgetsLibravatar Héctor Ramón Jiménez2024-03-061-8/+3
|
* Simplify theming for `TextEditor` widgetLibravatar Héctor Ramón Jiménez2024-03-061-1/+1
|
* Simplify theming for `Svg` widgetLibravatar Héctor Ramón Jiménez2024-03-061-1/+1
|
* Simplify theming for `Toggler` widgetLibravatar Héctor Ramón Jiménez2024-03-061-1/+1
|