summaryrefslogtreecommitdiffstats
path: root/lazy (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Merge pull request #1206 from iced-rs/fix/responsive-window-resizeLibravatar Héctor Ramón2022-01-201-1/+5
|\ | | | | Invalidate widget tree in `Responsive` after a `window::Event::Resized`
| * Invalidate widget tree in `Responsive` after a `window::Event::Resized`Libravatar Héctor Ramón Jiménez2022-01-201-1/+5
| | | | | | | | | | | | | | | | This is a pessimistic approach! Ideally, we should be able to recreate only the contents of the `Responsive` widget in `Widget::layout`, but given `view` is impure we have to trigger a brand new `view` call. The persistent widget tree should make this easier.
* | Remove `position` abbreviation in `Component`Libravatar Héctor Ramón Jiménez2022-01-201-2/+5
| |
* | component overlay position fixLibravatar cossonleo2022-01-201-6/+8
|/
* Recompute layout of `Responsive` contents when size changesLibravatar Héctor Ramón Jiménez2022-01-201-1/+3
|
* Write docs for `responsive` in `iced_lazy`Libravatar Héctor Ramón Jiménez2022-01-121-1/+13
|
* Write documentation for `component` in `iced_lazy`Libravatar Héctor Ramón Jiménez2022-01-121-8/+30
|
* Implement `Widget::overlay` for `Responsive` widgetLibravatar Héctor Ramón Jiménez2022-01-124-9/+434
|
* Remove superfluous generic type in `iced_lazy::Cache`Libravatar Héctor Ramón Jiménez2022-01-111-10/+8
|
* Introduce `Renderer` argument to `mouse_interaction` and `on_event`Libravatar Héctor Ramón Jiménez2022-01-111-4/+19
|
* Invalidate widget tree from `Responsive` widgetLibravatar Héctor Ramón Jiménez2022-01-111-2/+2
| | | | ... by introducing a new `invalidate_widgets` method to `Shell`
* fix: nested component layout invalidationLibravatar Nick Senger2021-12-241-0/+4
|
* fix: drop remaining component overlay events if closed during event batch ↵Libravatar Nick Senger2021-12-171-23/+26
| | | | processing
* Revert "fix: process component overlay events together with those of the ↵Libravatar Nick Senger2021-12-171-20/+31
| | | | | | original element" This reverts commit aa09bd4a981cfe0e11a21220193e823f48cdf450.
* fix: process component overlay events together with those of the original ↵Libravatar Nick Senger2021-12-131-31/+20
| | | | element
* Simplify `component` implementation in `iced_lazy`Libravatar Héctor Ramón Jiménez2021-12-131-210/+122
|
* feat: enable overlay in componentLibravatar Nick Senger2021-12-101-41/+351
|
* Fix `Widget::height` for `Component`Libravatar Nick Senger2021-12-081-1/+1
|
* Introduce `Shell` type in `iced_native`Libravatar Héctor Ramón Jiménez2021-11-291-9/+11
| | | | Widgets now can invalidate the current layout of the application on demand.
* Hide `Box` allocation in `component::view`Libravatar Héctor Ramón Jiménez2021-11-291-4/+4
| | | | ... we may be able to avoid it with generics in the future.
* Draft `component` example :tada:Libravatar Héctor Ramón Jiménez2021-11-291-5/+8
|
* Create `iced_lazy` and draft `Component` traitLibravatar Héctor Ramón Jiménez2021-11-293-0/+195