Commit message (Collapse) | Author | Files | Lines | ||
---|---|---|---|---|---|
2023-03-04 | Create `iced_widget` subcrate and re-organize the whole codebase | 1 | -163/+0 | ||
2023-02-17 | Use `f32` for `Padding` | 1 | -4/+1 | ||
2023-02-17 | Use `f32` in `Length::Units` and rename it to `Fixed` | 1 | -21/+16 | ||
2023-01-05 | Stop using `f32::clamp` altogether in `layout::Limits` | 1 | -7/+9 | ||
2023-01-05 | Fix `Layout::resolve` panicking under some circumstances | 1 | -2/+7 | ||
When `fill` has a bigger `Size` than `max`. | |||||
2022-12-20 | Fix `clippy` lints for Rust 1.66 | 1 | -14/+8 | ||
2021-06-01 | Use `Padding::horizontal` and `Padding::vertical` helpers | 1 | -2/+2 | ||
2021-06-01 | Add support for asymmetrical padding | 1 | -3/+6 | ||
2020-11-26 | Use recently stabilized intra-doc links | 1 | -33/+0 | ||
See RFC: https://github.com/rust-lang/rfcs/blob/master/text/1946-intra-rustdoc-links.md | |||||
2020-03-06 | Remove counterintuitive constant functions | 1 | -2/+2 | ||
2020-01-10 | Fix flex layout cross-alignment when not filled | 1 | -0/+8 | ||
2019-12-30 | Add `Length::FillPortion` variant | 1 | -2/+2 | ||
It allows to specify the amount of available space an element should take relative to other elements. | |||||
2019-11-29 | Make many functions `const` | 1 | -3/+3 | ||
The point is to set up repeated components or boilerplate before their use sites. The majority of these make sense as `const`. However, some functions such as those regarding state may not make sense as `const`. | |||||
2019-11-22 | Write docs for `iced` and `iced_native` | 1 | -0/+53 | ||
2019-11-11 | Implement `Container` widget | 1 | -21/+29 | ||
Remove `align_self` and `justify_content` methods | |||||
2019-11-11 | Draft custom layout engine based on `druid` | 1 | -3/+128 | ||
2019-11-10 | Draft new layout API | 1 | -0/+6 | ||