Commit message (Collapse) | Author | Files | Lines | ||
---|---|---|---|---|---|
2025-02-22 | Add `weakest` and `strongest` to `Background` palette | 1 | -7/+22 | ||
... and tweak background shade generation logic. | |||||
2025-02-21 | Update all `examples` to Rust 2024 | 1 | -1/+1 | ||
2025-01-06 | Showcase different `button` styles in `styling` example | 1 | -5/+49 | ||
2024-09-11 | Add `label` method to `Toggler` | 1 | -1/+2 | ||
2024-09-11 | Add disabled state and `on_toggle` handler to `Toggler` | 1 | -6/+3 | ||
Co-authored-by: Your Name here only <krishnsundaram@gmail.com> | |||||
2024-09-04 | Add `text::Wrapping` support | 1 | -1/+1 | ||
Co-authored-by: Neeraj Jaiswal <neerajj85@gmail.com> | |||||
2024-07-12 | Re-export variants of `Length` and `alignment` types | 1 | -6/+5 | ||
2024-07-12 | Introduce helper methods for alignment for all widgets | 1 | -5/+3 | ||
2024-06-19 | Introduce `daemon` API and unify shell runtimes | 1 | -1/+1 | ||
2024-05-03 | Introduce `center` widget helper | 1 | -9/+4 | ||
... 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-17 | Move `Program` to `application` module | 1 | -1/+1 | ||
2024-03-16 | Remove `sandbox` by making `application` more generic :tada: | 1 | -1/+1 | ||
2024-03-16 | Make `sandbox` helper take a `title` as well | 1 | -2/+1 | ||
2024-03-16 | Introduce `Program` API | 1 | -13/+6 | ||
2024-02-15 | Make `horizontal_space` and `vertical_space` fill by default | 1 | -1/+1 | ||
2024-02-14 | Use `Borrow` for both `options` and `selected` in `PickList` | 1 | -6/+2 | ||
2024-02-03 | Use `Theme::ALL` for theme selector in `styling` example | 1 | -71/+15 | ||
2024-02-03 | Add Dracula, Nord, Solarized and Grubvox variants to `Theme` | 1 | -18/+45 | ||
2024-02-01 | Introduce support for disabling a `checkbox` | 1 | -5/+2 | ||
2024-01-10 | Add `Theme` selector to `layout` example | 1 | -7/+10 | ||
2024-01-04 | Make `Shrink` have priority over `Fill` in layout | 1 | -4/+5 | ||
2023-09-07 | Host GIFs and video examples in `iced.rs` | 1 | -3/+1 | ||
RIP Gfycat | |||||
2023-09-04 | Use workspace dependencies and package inheritance | 1 | -1/+1 | ||
We are also taking this as a chance to synchronize the versions of all the crates! Because of this, we will skip the `0.11` version. | |||||
2023-09-03 | Use `Length::Fill` instead of fixed length in `styling` example | 1 | -1/+1 | ||
2023-09-03 | fix(examples-styling): fixed checkbox and toggler getting hidden behind ↵ | 1 | -0/+1 | ||
scrollbar Column inside scrollable is having Length::Fill so it is taking entire width thus hiding check box and toggler. Added fixed width to scrollable so Lenth::Fill will be relative to fixed width | |||||
2023-06-21 | Center `Submit` button vertically in `styling` example | 1 | -1/+3 | ||
2023-04-12 | Rename `on_change` to `on_input` for `TextInput` | 1 | -1/+1 | ||
2023-04-12 | Introduce disabled state for `TextInput` | 1 | -7/+4 | ||
2023-02-17 | Use `f32` in `Length::Units` and rename it to `Fixed` | 1 | -8/+4 | ||
2023-01-27 | Fix: Clippy lint 'uninlined_format_args' | 1 | -1/+1 | ||
2022-11-03 | Box `Custom` in `Theme` | 1 | -1/+1 | ||
2022-11-03 | Derive `Copy` for `Theme` | 1 | -1/+1 | ||
2022-11-03 | Make `Theme::Custom` fields opaque | 1 | -48/+41 | ||
2022-11-03 | fix: clippy lint ↵ | 1 | -3/+6 | ||
https://rust-lang.github.io/rust-clippy/master/index.html#large_enum_variant | |||||
2022-11-03 | refactor: remove once_cell from styling example | 2 | -14/+15 | ||
2022-11-03 | refactor: undo changes to radio | 1 | -9/+20 | ||
2022-11-03 | wip: Custom palette for built in theme | 2 | -3/+22 | ||
2022-07-27 | Replace stateful widgets with new `iced_pure` API | 1 | -62/+47 | ||
2022-06-07 | Implement theme styling for `Scrollable` | 1 | -103/+4 | ||
2022-06-07 | Implement theme styling for `TextInput` | 1 | -60/+3 | ||
2022-06-04 | Implement theme styling for `Checkbox` | 1 | -40/+3 | ||
2022-06-01 | Implement theme styling for `ProgressBar` | 1 | -25/+3 | ||
2022-06-01 | Implement theme styling for `Rule` | 1 | -28/+4 | ||
2022-06-01 | Use `Theme` background in `styling` example | 1 | -27/+2 | ||
2022-06-01 | Implement theme styling for `Toggler` | 1 | -43/+10 | ||
... and wire up theming to the `styling` example. | |||||
2022-05-27 | Implement theme styling for `Radio` | 1 | -42/+9 | ||
2022-05-26 | Fix examples and doc-tests | 1 | -54/+4 | ||
2022-05-14 | Draft first-class `Theme` support | 1 | -73/+12 | ||
RFC: https://github.com/iced-rs/rfcs/pull/6 | |||||
2022-02-09 | Update Rust edition to 2021 :tada: | 1 | -1/+1 | ||
2022-01-20 | Remove ambiguous `text_color` attributes for `Checkbox` and `Radio` | 1 | -1/+2 | ||
Instead, always use a `StyleSheet`. |