Commit message (Collapse) | Author | Files | Lines | ||
---|---|---|---|---|---|
2023-04-21 | Avoid cloning `layout::Node` in `Responsive` widget | 1 | -11/+13 | ||
2023-04-17 | Update lazy/src/responsive.rs | 1 | -1/+1 | ||
Co-authored-by: Héctor Ramón <hector0193@gmail.com> | |||||
2023-04-17 | Only invalidate layout if children layout is invalid | 1 | -5/+14 | ||
2023-04-17 | Invalidate responsive layout when layout is called | 1 | -25/+26 | ||
2023-03-04 | Create `iced_widget` subcrate and re-organize the whole codebase | 1 | -425/+0 | ||
2023-02-17 | Use `f32` in `Length::Units` and rename it to `Fixed` | 1 | -1/+1 | ||
2023-02-10 | fix: lazy widgets overlay is_over | 1 | -0/+7 | ||
2023-01-30 | Fix layout translation in `overlay::Group` | 1 | -2/+2 | ||
This bug produced improper positioning of overlays of elements inside a `Scrollable`. | |||||
2023-01-05 | Fix shadowed variable | 1 | -2/+4 | ||
Layout passed into the overlay was accidentally shadowed by the content's layout. So instead of offsetting by the proper layout, the content layout was used instead. | |||||
2022-12-22 | Implement `Widget::operate` for `Responsive` | 1 | -1/+24 | ||
2022-11-29 | Allow &mut self in overlay | 1 | -9/+13 | ||
2022-07-27 | Replace stateful widgets with new `iced_pure` API | 1 | -227/+206 | ||
2022-07-09 | Fix `clippy` lints for all crates and features | 1 | -2/+2 | ||
... and check those in CI as well! | |||||
2022-07-09 | Fix further `clippy` lints | 1 | -1/+1 | ||
... and explicitly annotate crates as well. | |||||
2022-05-14 | Draft first-class `Theme` support | 1 | -1/+4 | ||
RFC: https://github.com/iced-rs/rfcs/pull/6 | |||||
2022-02-23 | Remove `hash_layout` method from `Widget` trait | 1 | -37/+8 | ||
2022-02-22 | fix: overlay layout for `Responsive` | 1 | -4/+9 | ||
2022-01-20 | Invalidate widget tree in `Responsive` after a `window::Event::Resized` | 1 | -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. | |||||
2022-01-20 | Recompute layout of `Responsive` contents when size changes | 1 | -1/+3 | ||
2022-01-12 | Write docs for `responsive` in `iced_lazy` | 1 | -1/+13 | ||
2022-01-12 | Implement `Widget::overlay` for `Responsive` widget | 1 | -0/+413 | ||