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 | -1/+1 | ||
2025-02-04 | Take `Event` by reference in `Widget::update` | 1 | -2/+2 | ||
2025-01-06 | Add `warning` style for `button` | 1 | -0/+15 | ||
2024-12-02 | Fix `widget::button` format | 1 | -2/+1 | ||
2024-12-02 | Call `OnPress::get` only when button is pressed | 1 | -2/+2 | ||
2024-12-02 | Fix new `clippy` lints | 1 | -1/+1 | ||
2024-11-05 | Fix deferred layout on resize after drawing | 1 | -4/+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 | -45/+34 | ||
2024-11-05 | Split `Shell::request_redraw` into two different methods | 1 | -7/+2 | ||
2024-11-05 | Draft `reactive-rendering` feature for `button` | 1 | -44/+68 | ||
2024-10-17 | Update button Catalog and Style documentation (#2590) | 1 | -0/+51 | ||
* Update button Catalog and Style documentation * Clarified button documentation * fix code typo * Run `cargo fmt` * Fixed docs to pass tests --------- Co-authored-by: Héctor Ramón Jiménez <hector@hecrj.dev> | |||||
2024-09-29 | Fix various typos | 1 | -2/+2 | ||
Using https://github.com/crate-ci/typos | |||||
2024-09-19 | Show `checkbox` doc example in multiple places | 1 | -0/+2 | ||
2024-09-19 | Add quick example to `widget::button` module | 1 | -13/+33 | ||
2024-08-08 | Introduce `black_box` and `chain` in `widget::operation` | 1 | -1/+1 | ||
2024-07-12 | Improve `Border` ergonomics | 1 | -3/+4 | ||
2024-07-12 | Add `on_press_with` method for `Button` | 1 | -4/+35 | ||
This allows using a closure to produce the message only when the `Button` is actually pressed. Useful when generating the message may be expensive. | |||||
2024-06-14 | Replace `Command` with a new `Task` API with chain support | 1 | -1/+1 | ||
2024-03-24 | Use `Catalog` approach for all widgets | 1 | -8/+6 | ||
2024-03-24 | Fine-tune `Catalog` approach for `button`, `checkbox`, and `svg` | 1 | -37/+48 | ||
2024-03-23 | Try catalog theming approach with `Button` | 1 | -51/+51 | ||
2024-03-12 | Use closures for `Button::style` | 1 | -13/+16 | ||
2024-03-08 | Rename `transparentize` to `scale_alpha` | 1 | -3/+3 | ||
2024-03-08 | Make `PickList` padding consistent with `Button` | 1 | -9/+9 | ||
2024-03-08 | Improve default padding of `Button` widget | 1 | -1/+9 | ||
2024-03-07 | Remove obsolete `shadow_offset` field from `button::Appearance` | 1 | -3/+0 | ||
2024-03-07 | Fix consistency of `with_background` for `button::Appearance` | 1 | -5/+5 | ||
2024-03-07 | Implement additional helpers for `Border` and `container::Appearance` | 1 | -1/+1 | ||
2024-03-07 | Implement `button::DefaultStyle` for `Color` | 1 | -0/+6 | ||
2024-03-07 | Implement `with_background` for `button::Appearance` | 1 | -0/+10 | ||
2024-03-07 | Leverage `DefaultStyle` traits instead of `Default` | 1 | -18/+15 | ||
2024-03-07 | Rename `positive` and `destructive` to `success` and `danger` in `button` | 1 | -4/+4 | ||
2024-03-07 | Fix broken links in documentation | 1 | -2/+0 | ||
2024-03-07 | Move `Theme` type to `iced_core` | 1 | -7/+4 | ||
2024-03-06 | Use `Style` struct pattern instead of trait for all widgets | 1 | -15/+29 | ||
2024-03-04 | Simplify theming for `Button` widget | 1 | -148/+234 | ||
2024-02-15 | Add `clip` property to `Button` | 1 | -2/+17 | ||
2024-02-01 | Remove `position` from `overlay::Element` | 1 | -1/+3 | ||
2024-01-21 | Convert `Renderer::Theme` to generic `Widget` type | 1 | -34/+31 | ||
2024-01-20 | Add `Shadow` to `container::Appearance` | 1 | -2/+1 | ||
2024-01-20 | Add `Shadow` to `button::Appearance` | 1 | -1/+5 | ||
2024-01-20 | Introduce `Border` struct analogous to `Shadow` | 1 | -21/+3 | ||
2024-01-20 | Use `Default` implementation of `renderer::Quad` | 1 | -4/+2 | ||
2024-01-20 | feat: quad shadows | 1 | -0/+2 | ||
2024-01-11 | Make `Button` sizing strategy adaptive | 1 | -3/+6 | ||
2024-01-10 | Introduce useful helpers in `layout` module | 1 | -16/+3 | ||
2024-01-10 | Replace `width` and `height` with `Widget::size` | 1 | -7/+6 | ||
2024-01-04 | Make `Shrink` have priority over `Fill` in layout | 1 | -4/+9 | ||