summaryrefslogtreecommitdiffstats
path: root/src/pure.rs (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Expose additional helpers in `iced::pure`Libravatar Héctor Ramón Jiménez2022-02-131-1/+16
|
* Implement `Image` in `iced_pure`Libravatar Héctor Ramón Jiménez2022-02-131-1/+4
|
* Implement pure version of `todos` example :tada:Libravatar Héctor Ramón Jiménez2022-02-121-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`.
* Allow pure widgets to borrow from `Application` data :tada:Libravatar Héctor Ramón Jiménez2022-02-111-1/+2
|
* Expose `iced_pure` through a `pure` feature in `iced`Libravatar Héctor Ramón Jiménez2022-02-111-0/+29
Besides exposing the `iced_pure` crate, enabling the `pure` feature also provides pure versions of both the `Application` and `Sandbox` traits! :tada: