Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Take `Event` by reference in `Widget::update` | 2025-02-04 | 1 | -2/+2 | |
| | |||||
* | Add `warning` style for `button` | 2025-01-06 | 1 | -0/+15 | |
| | |||||
* | Fix `widget::button` format | 2024-12-02 | 1 | -2/+1 | |
| | |||||
* | Call `OnPress::get` only when button is pressed | 2024-12-02 | 1 | -2/+2 | |
| | |||||
* | Fix new `clippy` lints | 2024-12-02 | 1 | -1/+1 | |
| | |||||
* | Fix deferred layout on resize after drawing | 2024-11-05 | 1 | -4/+3 | |
| | |||||
* | Rename `Widget::on_event` to `update` | 2024-11-05 | 1 | -2/+2 | |
| | |||||
* | Replace `event::Status` in `Widget::on_event` with `Shell::capture_event` | 2024-11-05 | 1 | -45/+34 | |
| | |||||
* | Split `Shell::request_redraw` into two different methods | 2024-11-05 | 1 | -7/+2 | |
| | |||||
* | Draft `reactive-rendering` feature for `button` | 2024-11-05 | 1 | -44/+68 | |
| | |||||
* | Update button Catalog and Style documentation (#2590) | 2024-10-17 | 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> | ||||
* | Fix various typos | 2024-09-29 | 1 | -2/+2 | |
| | | | | Using https://github.com/crate-ci/typos | ||||
* | Show `checkbox` doc example in multiple places | 2024-09-19 | 1 | -0/+2 | |
| | |||||
* | Add quick example to `widget::button` module | 2024-09-19 | 1 | -13/+33 | |
| | |||||
* | Introduce `black_box` and `chain` in `widget::operation` | 2024-08-08 | 1 | -1/+1 | |
| | |||||
* | Improve `Border` ergonomics | 2024-07-12 | 1 | -3/+4 | |
| | |||||
* | Add `on_press_with` method for `Button` | 2024-07-12 | 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. | ||||
* | Replace `Command` with a new `Task` API with chain support | 2024-06-14 | 1 | -1/+1 | |
| | |||||
* | Use `Catalog` approach for all widgets | 2024-03-24 | 1 | -8/+6 | |
| | |||||
* | Fine-tune `Catalog` approach for `button`, `checkbox`, and `svg` | 2024-03-24 | 1 | -37/+48 | |
| | |||||
* | Try catalog theming approach with `Button` | 2024-03-23 | 1 | -51/+51 | |
| | |||||
* | Use closures for `Button::style` | 2024-03-12 | 1 | -13/+16 | |
| | |||||
* | Rename `transparentize` to `scale_alpha` | 2024-03-08 | 1 | -3/+3 | |
| | |||||
* | Make `PickList` padding consistent with `Button` | 2024-03-08 | 1 | -9/+9 | |
| | |||||
* | Improve default padding of `Button` widget | 2024-03-08 | 1 | -1/+9 | |
| | |||||
* | Remove obsolete `shadow_offset` field from `button::Appearance` | 2024-03-07 | 1 | -3/+0 | |
| | |||||
* | Fix consistency of `with_background` for `button::Appearance` | 2024-03-07 | 1 | -5/+5 | |
| | |||||
* | Implement additional helpers for `Border` and `container::Appearance` | 2024-03-07 | 1 | -1/+1 | |
| | |||||
* | Implement `button::DefaultStyle` for `Color` | 2024-03-07 | 1 | -0/+6 | |
| | |||||
* | Implement `with_background` for `button::Appearance` | 2024-03-07 | 1 | -0/+10 | |
| | |||||
* | Leverage `DefaultStyle` traits instead of `Default` | 2024-03-07 | 1 | -18/+15 | |
| | |||||
* | Rename `positive` and `destructive` to `success` and `danger` in `button` | 2024-03-07 | 1 | -4/+4 | |
| | |||||
* | Fix broken links in documentation | 2024-03-07 | 1 | -2/+0 | |
| | |||||
* | Move `Theme` type to `iced_core` | 2024-03-07 | 1 | -7/+4 | |
| | |||||
* | Use `Style` struct pattern instead of trait for all widgets | 2024-03-06 | 1 | -15/+29 | |
| | |||||
* | Simplify theming for `Button` widget | 2024-03-04 | 1 | -148/+234 | |
| | |||||
* | Add `clip` property to `Button` | 2024-02-15 | 1 | -2/+17 | |
| | |||||
* | Remove `position` from `overlay::Element` | 2024-02-01 | 1 | -1/+3 | |
| | |||||
* | Convert `Renderer::Theme` to generic `Widget` type | 2024-01-21 | 1 | -34/+31 | |
| | |||||
* | Add `Shadow` to `container::Appearance` | 2024-01-20 | 1 | -2/+1 | |
| | |||||
* | Add `Shadow` to `button::Appearance` | 2024-01-20 | 1 | -1/+5 | |
| | |||||
* | Introduce `Border` struct analogous to `Shadow` | 2024-01-20 | 1 | -21/+3 | |
| | |||||
* | Use `Default` implementation of `renderer::Quad` | 2024-01-20 | 1 | -4/+2 | |
| | |||||
* | feat: quad shadows | 2024-01-20 | 1 | -0/+2 | |
| | |||||
* | Make `Button` sizing strategy adaptive | 2024-01-11 | 1 | -3/+6 | |
| | |||||
* | Introduce useful helpers in `layout` module | 2024-01-10 | 1 | -16/+3 | |
| | |||||
* | Replace `width` and `height` with `Widget::size` | 2024-01-10 | 1 | -7/+6 | |
| | |||||
* | Make `Shrink` have priority over `Fill` in layout | 2024-01-04 | 1 | -4/+9 | |
| | |||||
* | Fix `clippy::semicolon_if_nothing_returned` | 2023-09-20 | 1 | -1/+1 | |
| | |||||
* | Merge branch 'master' into explicit-text-caching | 2023-09-10 | 1 | -2/+2 | |
|\ |