summaryrefslogtreecommitdiffstats
path: root/src/pure.rs (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Remove redundant `crate::Theme` in alias of `Element`Libravatar Héctor Ramón Jiménez2022-07-081-1/+1
|
* Make `Element` aliases in `iced` compatible with `iced_native` and `iced_pure`Libravatar Héctor Ramón Jiménez2022-07-081-2/+2
|
* Rename `theme::Definition` to `application::StyleSheet`Libravatar Héctor Ramón Jiménez2022-05-261-1/+1
|
* Draft first-class `Theme` supportLibravatar Héctor Ramón Jiménez2022-05-141-2/+2
| | | | RFC: https://github.com/iced-rs/rfcs/pull/6
* Write documentation for `iced_pure`Libravatar Héctor Ramón Jiménez2022-05-021-0/+78
|
* Fix broken intra-doc links in documentationLibravatar Héctor Ramón Jiménez2022-04-301-0/+1
|
* 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: