Commit message (Collapse) | Author | Files | Lines | ||
---|---|---|---|---|---|
2022-07-27 | Replace stateful widgets with new `iced_pure` API | 1 | -176/+0 | ||
2022-05-14 | Draft first-class `Theme` support | 1 | -3/+10 | ||
RFC: https://github.com/iced-rs/rfcs/pull/6 | |||||
2022-05-06 | Use `Borrow` instead of `AsRef` to allow easier casting | 1 | -8/+9 | ||
2022-05-06 | Take `AsRef<Widget>` instead of `Element` in `Tree` API | 1 | -13/+19 | ||
2022-05-02 | Write documentation for `iced_pure` | 1 | -7/+41 | ||
2022-03-16 | Export widget modules in `iced_pure` | 1 | -1/+1 | ||
... and fix collisions with the new `helpers` | |||||
2022-03-14 | Implement `pure` version of `PaneGrid` widget | 1 | -2/+15 | ||
2022-02-16 | Introduce `Tag` and `State` opaque types in `iced_pure::widget::tree` | 1 | -8/+44 | ||
2022-02-12 | Implement pure version of `todos` example :tada: | 1 | -22/+22 | ||
The `Widget` trait in `iced_pure` needed to change a bit to make the implementation of `Element::map` possible. Specifically, the `children` method has been split into `diff` and `children_state`. | |||||
2022-02-12 | Implement `Scrollable` in `iced_pure` | 1 | -7/+11 | ||
2022-02-11 | Expose reusable `Button` logic | 1 | -0/+14 | ||
... and reuse it in `iced_pure`! | |||||
2022-02-11 | Allow pure widgets to borrow from `Application` data :tada: | 1 | -23/+26 | ||
2022-02-11 | Rename `iced_virtual` to `iced_pure` | 1 | -0/+0 | ||
`virtual` is a reserved keyword in Rust :grimacing: | |||||
2022-02-10 | Draft virtual `Button`, `Column`, and `Text` | 1 | -0/+58 | ||
... as well as a very naive diffing strategy! |