Commit message (Collapse) | Author | Files | Lines | ||
---|---|---|---|---|---|
2023-03-04 | Create `iced_widget` subcrate and re-organize the whole codebase | 1 | -91/+0 | ||
2023-02-27 | Remove `Fill` variant for `Alignment` | 1 | -6/+0 | ||
Implementing this generically in our `flex` logic has an exponential cost. Let's explore other options! | |||||
2021-12-13 | Simplify `component` implementation in `iced_lazy` | 1 | -1/+9 | ||
2021-09-20 | Refactor alignment types into an `alignment` module | 1 | -11/+11 | ||
2021-09-20 | Introduce and use `CrossAlign` enum for `Column` and `Row` | 1 | -11/+11 | ||
2021-09-20 | Add Align::Fill variant | 1 | -0/+6 | ||
2020-11-26 | Use recently stabilized intra-doc links | 1 | -17/+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-02-14 | Improve documentation for new `Node` methods | 1 | -6/+5 | ||
2020-02-14 | Revert changing the constructor and implement new method. | 1 | -7/+15 | ||
2020-02-14 | Add `bound` to `Node` constructor. | 1 | -5/+5 | ||
2020-02-14 | Make `Node::align` public. | 1 | -1/+5 | ||
2019-11-29 | Make many functions `const` | 1 | -4/+4 | ||
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 | -2/+21 | ||
2019-11-11 | Remove `padding` from `Container` for now | 1 | -2/+6 | ||
2019-11-11 | Implement `Container` widget | 1 | -1/+24 | ||
Remove `align_self` and `justify_content` methods | |||||
2019-11-11 | Draft custom layout engine based on `druid` | 1 | -0/+37 | ||