Commit message (Collapse) | Author | Files | Lines | ||
---|---|---|---|---|---|
2024-09-05 | Deprecate the `component` widget | 2 | -159/+0 | ||
2024-07-12 | Re-export variants of `Length` and `alignment` types | 1 | -11/+6 | ||
2024-07-12 | Introduce helper methods for alignment for all widgets | 1 | -4/+2 | ||
2024-05-03 | Introduce `center` widget helper | 1 | -5/+3 | ||
... 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-24 | Use `Catalog` approach for all widgets | 1 | -8/+2 | ||
2024-03-23 | Try catalog theming approach with `Button` | 1 | -2/+2 | ||
2024-03-16 | Introduce `Program` API | 1 | -13/+3 | ||
2024-03-12 | Use closures for `Text::style` | 1 | -2/+8 | ||
2024-03-09 | Make `component` example generic over `Theme` | 1 | -3/+8 | ||
2024-02-21 | Add `size_hint` method to `Component` trait | 1 | -1/+8 | ||
This can be used to aid the sizing strategy of some containers directly in the component definition, instead of stating the sizes explicitly in `view` logic. | |||||
2024-01-21 | Convert `Renderer::Theme` to generic `Widget` type | 1 | -4/+4 | ||
2023-09-04 | Use workspace dependencies and package inheritance | 1 | -1/+2 | ||
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-04-12 | Rename `on_change` to `on_input` for `TextInput` | 1 | -1/+1 | ||
2023-04-12 | Introduce disabled state for `TextInput` | 1 | -1/+1 | ||
2023-03-04 | Create `iced_widget` subcrate and re-organize the whole codebase | 2 | -20/+6 | ||
2023-02-27 | Remove `Fill` variant for `Alignment` | 1 | -2/+3 | ||
Implementing this generically in our `flex` logic has an exponential cost. Let's explore other options! | |||||
2023-02-17 | Use `f32` in `Length::Units` and rename it to `Fixed` | 1 | -1/+1 | ||
2022-07-27 | Replace stateful widgets with new `iced_pure` API | 1 | -66/+48 | ||
2022-07-09 | Fix `clippy` lints for all crates and features | 1 | -2/+1 | ||
... and check those in CI as well! | |||||
2022-06-29 | Introduce `StyleSheet` for `Text` widget | 1 | -3/+7 | ||
2022-06-07 | Implement theme styling for `TextInput` | 1 | -2/+2 | ||
2022-05-26 | Rename `Variant` to `Style` and `Style` to `Appearance` | 1 | -2/+0 | ||
2022-05-14 | Draft first-class `Theme` support | 1 | -0/+4 | ||
RFC: https://github.com/iced-rs/rfcs/pull/6 | |||||
2022-02-09 | Update Rust edition to 2021 :tada: | 1 | -1/+1 | ||
2021-11-29 | Hide `Box` allocation in `component::view` | 1 | -1/+1 | ||
... we may be able to avoid it with generics in the future. | |||||
2021-11-29 | Draft `component` example :tada: | 2 | -0/+191 | ||