| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Take `Event` by reference in `Widget::update` | 2025-02-04 | 1 | -1/+1 | |
| | | |||||
| * | Fix new `clippy` lints | 2024-12-02 | 1 | -2/+2 | |
| | | |||||
| * | Rename `Widget::on_event` to `update` | 2024-11-05 | 1 | -1/+1 | |
| | | |||||
| * | Replace `event::Status` in `Widget::on_event` with `Shell::capture_event` | 2024-11-05 | 1 | -12/+6 | |
| | | |||||
| * | Split `Shell::request_redraw` into two different methods | 2024-11-05 | 1 | -7/+5 | |
| | | |||||
| * | Implement `reactive-rendering` for `toggler` | 2024-11-05 | 1 | -17/+32 | |
| | | |||||
| * | Add `PartialEq` derives for widget styles | 2024-10-14 | 1 | -1/+1 | |
| | | |||||
| * | Show `toggler` doc example in multiple places | 2024-09-19 | 1 | -8/+54 | |
| | | |||||
| * | Add `label` method to `Toggler` | 2024-09-11 | 1 | -6/+10 | |
| | | |||||
| * | Add disabled state and `on_toggle` handler to `Toggler` | 2024-09-11 | 1 | -12/+47 | |
| | | | | | Co-authored-by: Your Name here only <krishnsundaram@gmail.com> | ||||
| * | Fix `toggler` example | 2024-09-04 | 1 | -1/+1 | |
| | | |||||
| * | Add `text::Wrapping` support | 2024-09-04 | 1 | -4/+13 | |
| | | | | | Co-authored-by: Neeraj Jaiswal <neerajj85@gmail.com> | ||||
| * | Fix `text::State` downcast in some widgets | 2024-07-19 | 1 | -1/+3 | |
| | | |||||
| * | Set default `width` of `toggler` widget to `Shrink` | 2024-07-13 | 1 | -1/+1 | |
| | | |||||
| * | Use `Catalog` approach for all widgets | 2024-03-24 | 1 | -33/+52 | |
| | | |||||
| * | Use closures for `Toggler::style` | 2024-03-12 | 1 | -11/+14 | |
| | | |||||
| * | Make `Checkbox`, `Radio`, and `Toggler` default sizes consistent | 2024-03-08 | 1 | -1/+1 | |
| | | |||||
| * | Leverage `DefaultStyle` traits instead of `Default` | 2024-03-07 | 1 | -17/+14 | |
| | | |||||
| * | Move `Theme` type to `iced_core` | 2024-03-07 | 1 | -4/+2 | |
| | | |||||
| * | Use `Style` struct pattern instead of trait for all widgets | 2024-03-06 | 1 | -11/+23 | |
| | | |||||
| * | Simplify theming for `Toggler` widget | 2024-03-06 | 1 | -20/+111 | |
| | | |||||
| * | add border widths to toggler stylesheet | 2024-02-07 | 1 | -4/+4 | |
| | | |||||
| * | Convert `Renderer::Theme` to generic `Widget` type | 2024-01-21 | 1 | -21/+22 | |
| | | |||||
| * | Introduce `Border` struct analogous to `Shadow` | 2024-01-20 | 1 | -12/+12 | |
| | | |||||
| * | Use `Default` implementation of `renderer::Quad` | 2024-01-20 | 1 | -2/+2 | |
| | | |||||
| * | feat: quad shadows | 2024-01-20 | 1 | -0/+2 | |
| | | |||||
| * | Replace `width` and `height` with `Widget::size` | 2024-01-10 | 1 | -6/+5 | |
| | | |||||
| * | Clip text to `viewport` bounds instead of layout bounds | 2023-12-01 | 1 | -1/+2 | |
| | | |||||
| * | Fix `clippy::default_trait_access` | 2023-09-20 | 1 | -1/+1 | |
| | | |||||
| * | Merge branch 'master' into explicit-text-caching | 2023-09-10 | 1 | -3/+3 | |
| |\ | |||||
| | * | Fix majority of unresolved documentation links | 2023-09-09 | 1 | -3/+3 | |
| | | | |||||
| * | | Make `widget::Tree` mutable in `Widget::layout` | 2023-08-30 | 1 | -2/+2 | |
| | | | |||||
| * | | Add some default spacing for `Toggler` | 2023-08-30 | 1 | -1/+1 | |
| | | | |||||
| * | | Implement explicit text caching in the widget state tree | 2023-08-30 | 1 | -39/+49 | |
| |/ | |||||
| * | Add viewport to Widget::on_event | 2023-07-15 | 1 | -0/+1 | |
| | | |||||
| * | Add touch support for toggler. (#1935) | 2023-06-29 | 1 | -1/+3 | |
| | | | | | | | | | | | | | * Add touch support for toggler. * Fix formatting. * Fix consistency of imports in `iced_widget::toggler` --------- Co-authored-by: Austin M. Reppert <austinmreppert@protonmail.com> Co-authored-by: Héctor Ramón Jiménez <hector0193@gmail.com> | ||||
| * | Take `Rectangle` by value in `Cursor` API | 2023-06-08 | 1 | -3/+3 | |
| | | |||||
| * | Implement basic cursor availability | 2023-06-08 | 1 | -8/+8 | |
| | | |||||
| * | Support configurable `LineHeight` in text widgets | 2023-05-04 | 1 | -0/+13 | |
| | | |||||
| * | Introduce `text::Shaping` enum and replace magic boolean | 2023-05-02 | 1 | -2/+11 | |
| | | |||||
| * | Make basic text shaping the default shaping strategy | 2023-05-02 | 1 | -0/+1 | |
| | | |||||
| * | Use `no_run` for widget doc-tests | 2023-03-05 | 1 | -1/+1 | |
| | | |||||
| * | Create `iced_widget` subcrate and re-organize the whole codebase | 2023-03-04 | 1 | -0/+326 | |
