summaryrefslogtreecommitdiffstats
path: root/src/pure.rs (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Export widget modules in `iced_pure`Libravatar Héctor Ramón Jiménez2022-03-161-31/+6
| | | | ... and fix collisions with the new `helpers`
* Implement `pure` version of `game_of_life` example :tada:Libravatar Héctor Ramón Jiménez2022-03-091-3/+3
|
* Implement `pure` version of `Canvas` widgetLibravatar Héctor Ramón Jiménez2022-03-091-0/+6
|
* Remove redundant `widget` modules in subcratesLibravatar Héctor Ramón Jiménez2022-03-091-0/+1
| | | | Instead, we can define the type aliases just once in the root crate!
* 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: