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