Commit message (Collapse) | Author | Files | Lines | ||
---|---|---|---|---|---|
2025-02-04 | Take `Event` by reference in `Widget::update` | 1 | -1/+1 | ||
2024-12-02 | Fix new `clippy` lints | 1 | -2/+2 | ||
2024-11-05 | Rename `Widget::on_event` to `update` | 1 | -1/+1 | ||
2024-11-05 | Replace `event::Status` in `Widget::on_event` with `Shell::capture_event` | 1 | -12/+6 | ||
2024-11-05 | Split `Shell::request_redraw` into two different methods | 1 | -7/+5 | ||
2024-11-05 | Implement `reactive-rendering` for `toggler` | 1 | -17/+32 | ||
2024-10-14 | Add `PartialEq` derives for widget styles | 1 | -1/+1 | ||
2024-09-19 | Show `toggler` doc example in multiple places | 1 | -8/+54 | ||
2024-09-11 | Add `label` method to `Toggler` | 1 | -6/+10 | ||
2024-09-11 | Add disabled state and `on_toggle` handler to `Toggler` | 1 | -12/+47 | ||
Co-authored-by: Your Name here only <krishnsundaram@gmail.com> | |||||
2024-09-04 | Fix `toggler` example | 1 | -1/+1 | ||
2024-09-04 | Add `text::Wrapping` support | 1 | -4/+13 | ||
Co-authored-by: Neeraj Jaiswal <neerajj85@gmail.com> | |||||
2024-07-19 | Fix `text::State` downcast in some widgets | 1 | -1/+3 | ||
2024-07-13 | Set default `width` of `toggler` widget to `Shrink` | 1 | -1/+1 | ||
2024-03-24 | Use `Catalog` approach for all widgets | 1 | -33/+52 | ||
2024-03-12 | Use closures for `Toggler::style` | 1 | -11/+14 | ||
2024-03-08 | Make `Checkbox`, `Radio`, and `Toggler` default sizes consistent | 1 | -1/+1 | ||
2024-03-07 | Leverage `DefaultStyle` traits instead of `Default` | 1 | -17/+14 | ||
2024-03-07 | Move `Theme` type to `iced_core` | 1 | -4/+2 | ||
2024-03-06 | Use `Style` struct pattern instead of trait for all widgets | 1 | -11/+23 | ||
2024-03-06 | Simplify theming for `Toggler` widget | 1 | -20/+111 | ||
2024-02-07 | add border widths to toggler stylesheet | 1 | -4/+4 | ||
2024-01-21 | Convert `Renderer::Theme` to generic `Widget` type | 1 | -21/+22 | ||
2024-01-20 | Introduce `Border` struct analogous to `Shadow` | 1 | -12/+12 | ||
2024-01-20 | Use `Default` implementation of `renderer::Quad` | 1 | -2/+2 | ||
2024-01-20 | feat: quad shadows | 1 | -0/+2 | ||
2024-01-10 | Replace `width` and `height` with `Widget::size` | 1 | -6/+5 | ||
2023-12-01 | Clip text to `viewport` bounds instead of layout bounds | 1 | -1/+2 | ||
2023-09-20 | Fix `clippy::default_trait_access` | 1 | -1/+1 | ||
2023-09-09 | Fix majority of unresolved documentation links | 1 | -3/+3 | ||
2023-08-30 | Make `widget::Tree` mutable in `Widget::layout` | 1 | -2/+2 | ||
2023-08-30 | Add some default spacing for `Toggler` | 1 | -1/+1 | ||
2023-08-30 | Implement explicit text caching in the widget state tree | 1 | -39/+49 | ||
2023-07-15 | Add viewport to Widget::on_event | 1 | -0/+1 | ||
2023-06-29 | Add touch support for toggler. (#1935) | 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> | |||||
2023-06-08 | Take `Rectangle` by value in `Cursor` API | 1 | -3/+3 | ||
2023-06-08 | Implement basic cursor availability | 1 | -8/+8 | ||
2023-05-04 | Support configurable `LineHeight` in text widgets | 1 | -0/+13 | ||
2023-05-02 | Introduce `text::Shaping` enum and replace magic boolean | 1 | -2/+11 | ||
2023-05-02 | Make basic text shaping the default shaping strategy | 1 | -0/+1 | ||
2023-03-05 | Use `no_run` for widget doc-tests | 1 | -1/+1 | ||
2023-03-04 | Create `iced_widget` subcrate and re-organize the whole codebase | 1 | -14/+16 | ||
2023-02-24 | Use `Pixels` for `Text::size` | 1 | -2/+1 | ||
2023-02-24 | Overhaul `Font` type to allow font family selection | 1 | -6/+7 | ||
2023-02-17 | Use `Pixels` for `spacing` | 1 | -4/+4 | ||
2023-02-17 | Use `Pixels` for `size` methods | 1 | -2/+2 | ||
2023-02-17 | Use `Pixels` for `Text::size` | 1 | -5/+5 | ||
2023-02-17 | Use `f32` in `Length::Units` and rename it to `Fixed` | 1 | -10/+6 | ||
2023-01-02 | Rename `is_checked` to `is_toggled` in `Toggler` | 1 | -9/+9 | ||
2022-12-22 | Use same name & order for toggler::new and helper | 1 | -9/+9 | ||
The helper function for the toggler widget switched the order and name of the arguments passed when creating the toggler widget. This just standardizes the order whether the dev is using the helper or the associated function. |