Commit message (Collapse) | Author | Files | Lines | ||
---|---|---|---|---|---|
2025-02-04 | Take `Event` by reference in `Widget::update` | 1 | -9/+3 | ||
2024-12-02 | Fix new `clippy` lints | 1 | -5/+5 | ||
2024-11-05 | Rename `Widget::on_event` to `update` | 1 | -4/+4 | ||
2024-11-05 | Replace `event::Status` in `Widget::on_event` with `Shell::capture_event` | 1 | -19/+18 | ||
2024-10-02 | Cull widget draw calls in `column` and `row` | 1 | -11/+8 | ||
2024-09-20 | Fix layout for wrapped row with spacing | 1 | -1/+1 | ||
2024-09-19 | Write doc examples for `column` and `row` | 1 | -0/+21 | ||
2024-08-08 | Introduce `black_box` and `chain` in `widget::operation` | 1 | -2/+2 | ||
2024-08-06 | Implement `row::Wrapping` widget | 1 | -0/+200 | ||
If you have a `Row`, simply call `Row::wrap` at the end to turn it into a `Row` that will wrap its contents. The original alignment of the `Row` is preserved per row wrapped. | |||||
2024-07-12 | Re-export variants of `Length` and `alignment` types | 1 | -15/+0 | ||
2024-07-12 | Introduce helper methods for alignment for all widgets | 1 | -7/+23 | ||
2024-06-14 | Replace `Command` with a new `Task` API with chain support | 1 | -1/+1 | ||
2024-06-13 | format | 1 | -2/+9 | ||
2024-06-12 | Add FromIterator for Row and Column | 1 | -0/+6 | ||
2024-06-12 | Revert "Add FromIterator for Row and Column" | 1 | -6/+0 | ||
This reverts commit 06c80c5bcedd8dba187af9d187ba1ae40fa4dafa. | |||||
2024-06-12 | Add FromIterator for Row and Column | 1 | -0/+6 | ||
2024-04-01 | Use `Iterator::size_hint` to initialize `Column` and `Row` capacity | 1 | -1/+8 | ||
2024-02-27 | Fix `Column` and `Row` fluidity being overridden by `push` | 1 | -8/+3 | ||
2024-02-19 | Add `from_vec` method to `Column` and `Row` | 1 | -9/+22 | ||
2024-02-19 | Add `extend` method to `Column` and `Row` | 1 | -1/+9 | ||
2024-02-15 | Add `push_maybe` to `Column` and `Row` | 1 | -0/+12 | ||
2024-02-15 | Add `clip` property to `Button` | 1 | -1/+1 | ||
2024-02-15 | Add `clip` property to `Container`, `Column`, and `Row` | 1 | -2/+21 | ||
2024-02-01 | Remove `position` from `overlay::Element` | 1 | -2/+9 | ||
2024-01-21 | Convert `Renderer::Theme` to generic `Widget` type | 1 | -12/+13 | ||
2024-01-10 | Make `column` and `row` take an `IntoIterator` | 1 | -4/+2 | ||
2024-01-10 | Replace `width` and `height` with `Widget::size` | 1 | -7/+6 | ||
2024-01-10 | Introduce `Widget::size_hint` and fix further layout inconsistencies | 1 | -11/+30 | ||
2024-01-10 | Create `layout` example | 1 | -1/+1 | ||
2024-01-04 | Fix needless borrow in `row::layout` | 1 | -1/+1 | ||
2024-01-04 | Make `Shrink` have priority over `Fill` in layout | 1 | -3/+3 | ||
2023-12-01 | Clip text to `viewport` bounds instead of layout bounds | 1 | -9/+11 | ||
2023-09-20 | Fix `clippy::semicolon_if_nothing_returned` | 1 | -2/+2 | ||
2023-08-30 | Make `widget::Tree` mutable in `Widget::layout` | 1 | -2/+2 | ||
2023-08-30 | Implement explicit text caching in the widget state tree | 1 | -0/+2 | ||
2023-07-27 | Introduce `visible_bounds` operation for `Container` | 1 | -1/+1 | ||
2023-07-15 | Add viewport to Widget::on_event | 1 | -0/+2 | ||
2023-06-08 | Implement basic cursor availability | 1 | -20/+10 | ||
2023-03-04 | Create `iced_widget` subcrate and re-organize the whole codebase | 1 | -10/+10 | ||
2023-02-17 | Use `Pixels` for `spacing` | 1 | -7/+7 | ||
2023-02-17 | Use `f32` in `Length::Units` and rename it to `Fixed` | 1 | -4/+4 | ||
2023-02-16 | Revert "provide ID to operation.container in applicable widgets" | 1 | -47/+12 | ||
This reverts commit 8f9550bcf7c1cebbf90e80683761375406ca6139. | |||||
2023-02-16 | provide ID to operation.container in applicable widgets | 1 | -12/+47 | ||
2022-12-22 | Add `Renderer` argument to `operate` | 1 | -1/+4 | ||
2022-11-29 | Allow &mut self in overlay | 1 | -2/+2 | ||
2022-07-28 | Implement `Widget::operate` for `TextInput` | 1 | -1/+18 | ||
2022-07-27 | Replace stateful widgets with new `iced_pure` API | 1 | -49/+44 | ||
2022-07-09 | Fix further `clippy` lints | 1 | -0/+6 | ||
... and explicitly annotate crates as well. | |||||
2022-05-14 | Draft first-class `Theme` support | 1 | -1/+9 | ||
RFC: https://github.com/iced-rs/rfcs/pull/6 | |||||
2022-05-02 | Write documentation for `iced_pure` | 1 | -1/+1 | ||