Commit message (Collapse) | Author | Files | Lines | ||
---|---|---|---|---|---|
2022-07-27 | Replace stateful widgets with new `iced_pure` API | 1 | -112/+0 | ||
2022-07-08 | Remove redundant `crate::Theme` in alias of `Element` | 1 | -1/+1 | ||
2022-07-08 | Make `Element` aliases in `iced` compatible with `iced_native` and `iced_pure` | 1 | -2/+2 | ||
2022-05-26 | Rename `theme::Definition` to `application::StyleSheet` | 1 | -1/+1 | ||
2022-05-14 | Draft first-class `Theme` support | 1 | -2/+2 | ||
RFC: https://github.com/iced-rs/rfcs/pull/6 | |||||
2022-05-02 | Write documentation for `iced_pure` | 1 | -0/+78 | ||
2022-04-30 | Fix broken intra-doc links in documentation | 1 | -0/+1 | ||
2022-03-16 | Export widget modules in `iced_pure` | 1 | -31/+6 | ||
... and fix collisions with the new `helpers` | |||||
2022-03-09 | Implement `pure` version of `game_of_life` example :tada: | 1 | -3/+3 | ||
2022-03-09 | Implement `pure` version of `Canvas` widget | 1 | -0/+6 | ||
2022-03-09 | Remove redundant `widget` modules in subcrates | 1 | -0/+1 | ||
Instead, we can define the type aliases just once in the root crate! | |||||
2022-02-13 | Expose additional helpers in `iced::pure` | 1 | -1/+16 | ||
2022-02-13 | Implement `Image` in `iced_pure` | 1 | -1/+4 | ||
2022-02-12 | Implement pure version of `todos` example :tada: | 1 | -1/+4 | ||
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-11 | Allow pure widgets to borrow from `Application` data :tada: | 1 | -1/+2 | ||
2022-02-11 | Expose `iced_pure` through a `pure` feature in `iced` | 1 | -0/+29 | ||
Besides exposing the `iced_pure` crate, enabling the `pure` feature also provides pure versions of both the `Application` and `Sandbox` traits! :tada: |