Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Create `iced_widget` subcrate and re-organize the whole codebase | 2023-03-04 | 1 | -425/+0 | |
| | |||||
* | Use `f32` in `Length::Units` and rename it to `Fixed` | 2023-02-17 | 1 | -1/+1 | |
| | |||||
* | fix: lazy widgets overlay is_over | 2023-02-10 | 1 | -0/+7 | |
| | |||||
* | Fix layout translation in `overlay::Group` | 2023-01-30 | 1 | -2/+2 | |
| | | | | | This bug produced improper positioning of overlays of elements inside a `Scrollable`. | ||||
* | Fix shadowed variable | 2023-01-05 | 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. | ||||
* | Implement `Widget::operate` for `Responsive` | 2022-12-22 | 1 | -1/+24 | |
| | |||||
* | Allow &mut self in overlay | 2022-11-29 | 1 | -9/+13 | |
| | |||||
* | Replace stateful widgets with new `iced_pure` API | 2022-07-27 | 1 | -227/+206 | |
| | |||||
* | Fix `clippy` lints for all crates and features | 2022-07-09 | 1 | -2/+2 | |
| | | | | ... and check those in CI as well! | ||||
* | Fix further `clippy` lints | 2022-07-09 | 1 | -1/+1 | |
| | | | | ... and explicitly annotate crates as well. | ||||
* | Draft first-class `Theme` support | 2022-05-14 | 1 | -1/+4 | |
| | | | | RFC: https://github.com/iced-rs/rfcs/pull/6 | ||||
* | Remove `hash_layout` method from `Widget` trait | 2022-02-23 | 1 | -37/+8 | |
| | |||||
* | fix: overlay layout for `Responsive` | 2022-02-22 | 1 | -4/+9 | |
| | |||||
* | Invalidate widget tree in `Responsive` after a `window::Event::Resized` | 2022-01-20 | 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. | ||||
* | Recompute layout of `Responsive` contents when size changes | 2022-01-20 | 1 | -1/+3 | |
| | |||||
* | Write docs for `responsive` in `iced_lazy` | 2022-01-12 | 1 | -1/+13 | |
| | |||||
* | Implement `Widget::overlay` for `Responsive` widget | 2022-01-12 | 1 | -0/+413 | |