summaryrefslogtreecommitdiffstats
path: root/examples/pure (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Add `max_width` to `Column` in `iced_pure`Libravatar Héctor Ramón Jiménez2022-02-121-1/+9
|
* Implement missing `on_event` and `mouse_interaction` for `Checkbox` in ↵Libravatar Héctor Ramón Jiménez2022-02-121-1/+1
| | | | `iced_pure`
* Implement pure version of `todos` example :tada:Libravatar Héctor Ramón Jiménez2022-02-124-0/+650
| | | | | | | | 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`.
* Reuse `Text` widget from `iced_native` in `iced_pure`Libravatar Héctor Ramón Jiménez2022-02-121-1/+1
|
* Expose function helpers to build widgets in `pure::widget`Libravatar Héctor Ramón Jiménez2022-02-111-5/+6
| | | | | `button("Hello")` is easier to write and read than `Button::new("Hello")`.
* Expose `iced_pure` through a `pure` feature in `iced`Libravatar Héctor Ramón Jiménez2022-02-112-14/+8
| | | | | | Besides exposing the `iced_pure` crate, enabling the `pure` feature also provides pure versions of both the `Application` and `Sandbox` traits! :tada:
* Rename `iced_virtual` to `iced_pure`Libravatar Héctor Ramón Jiménez2022-02-114-0/+94
`virtual` is a reserved keyword in Rust :grimacing: