Commit message (Collapse) | Author | Files | Lines | ||
---|---|---|---|---|---|
2025-02-22 | Add `weakest` and `strongest` to `Background` palette | 1 | -2/+2 | ||
... and tweak background shade generation logic. | |||||
2025-02-21 | Run `cargo fmt` | 1 | -2/+2 | ||
2025-02-09 | Introduce additional color styles for `container` | 1 | -2/+38 | ||
2025-02-04 | Take `Event` by reference in `Widget::update` | 1 | -1/+1 | ||
2025-01-30 | Use `Into<Id>` for `container::Id` arguments | 1 | -3/+11 | ||
2024-12-10 | Draft `iced_test` crate and test `todos` example | 1 | -1/+1 | ||
2024-12-02 | Fix new `clippy` lints | 1 | -3/+3 | ||
2024-11-05 | Rename `Widget::on_event` to `update` | 1 | -2/+2 | ||
2024-11-05 | Replace `event::Status` in `Widget::on_event` with `Shell::capture_event` | 1 | -4/+3 | ||
2024-10-14 | Add `PartialEq` derives for widget styles | 1 | -1/+1 | ||
2024-09-19 | Show `container` doc example in multiple places | 1 | -3/+41 | ||
2024-09-10 | Implement `scroll_by` operation for `scrollable` | 1 | -0/+1 | ||
`scroll_by` allows scrolling an absolute offset that is applied to the current scrolling position. | |||||
2024-09-02 | Implement `From<Style>` for `container::StyleFn` | 1 | -0/+6 | ||
Co-authored-by: wiiznokes <78230769+wiiznokes@users.noreply.github.com> | |||||
2024-09-02 | Introduce `container::background` style helper | 1 | -0/+5 | ||
2024-08-22 | Make `RichText` generic over data structure | 1 | -1/+0 | ||
... and decouple `markdown::parse` from theming | |||||
2024-08-08 | Introduce `black_box` and `chain` in `widget::operation` | 1 | -1/+1 | ||
2024-07-20 | Make `container::dark` darker and rounded | 1 | -1/+2 | ||
2024-07-20 | Introduce `container::dark` style | 1 | -2/+12 | ||
2024-07-20 | Make `container::Style` API more consistent | 1 | -15/+23 | ||
2024-07-12 | Improve `Border` ergonomics | 1 | -4/+4 | ||
2024-07-12 | Fix inconsistent `align_*` methods in `Container` | 1 | -2/+2 | ||
2024-07-12 | Re-export variants of `Length` and `alignment` types | 1 | -39/+8 | ||
2024-07-12 | Introduce helper methods for alignment for all widgets | 1 | -22/+39 | ||
2024-07-05 | Hide internal `Task` constructors | 1 | -2/+2 | ||
2024-06-14 | Replace `Command` with a new `Task` API with chain support | 1 | -5/+5 | ||
2024-05-13 | Ask for explicit `Length` in `center_*` methods | 1 | -17/+10 | ||
2024-05-03 | Introduce `center` widget helper | 1 | -2/+60 | ||
... 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. | |||||
2024-03-24 | Use `Catalog` approach for all widgets | 1 | -98/+72 | ||
2024-03-12 | Remove `themer` use from `gradient` example :tada: | 1 | -3/+21 | ||
2024-03-12 | Try using closures for `Container::style` | 1 | -19/+22 | ||
`Box` should not allocate for zero-sized types; so we should not be incurring much overhead. Just a bit of indirection. | |||||
2024-03-08 | Rename `container::box_` to `rounded_box` | 1 | -1/+1 | ||
2024-03-07 | Implement additional helpers for `Border` and `container::Appearance` | 1 | -4/+22 | ||
2024-03-07 | Leverage `DefaultStyle` traits instead of `Default` | 1 | -33/+16 | ||
2024-03-07 | Move `Theme` type to `iced_core` | 1 | -2/+1 | ||
2024-03-06 | Use `Style` struct pattern instead of trait for all widgets | 1 | -19/+48 | ||
2024-03-06 | Simplify theming for `PickList`, `ComboBox`, and `Menu` widgets | 1 | -6/+21 | ||
2024-03-05 | Simplify theming for `Container` widget | 1 | -15/+103 | ||
2024-02-15 | Add `clip` property to `Container`, `Column`, and `Row` | 1 | -2/+15 | ||
2024-02-01 | Remove `position` from `overlay::Element` | 1 | -0/+2 | ||
2024-01-21 | Convert `Renderer::Theme` to generic `Widget` type | 1 | -22/+23 | ||
2024-01-20 | Add `Shadow` to `container::Appearance` | 1 | -2/+5 | ||
2024-01-20 | Introduce `Border` struct analogous to `Shadow` | 1 | -4/+2 | ||
2024-01-20 | Use `Default` implementation of `renderer::Quad` | 1 | -1/+1 | ||
2024-01-20 | feat: quad shadows | 1 | -0/+1 | ||
2024-01-11 | Make `Button` sizing strategy adaptive | 1 | -10/+2 | ||
2024-01-10 | Fix unnecessary `into` call in `Container::new` | 1 | -1/+1 | ||
2024-01-10 | Introduce useful helpers in `layout` module | 1 | -18/+10 | ||
2024-01-10 | Replace `width` and `height` with `Widget::size` | 1 | -6/+5 | ||
2024-01-10 | Introduce `Widget::size_hint` and fix further layout inconsistencies | 1 | -2/+13 | ||
2024-01-04 | Make `Shrink` have priority over `Fill` in layout | 1 | -15/+18 | ||