summaryrefslogtreecommitdiffstats
path: root/examples/pure/todos (unfollow)
Commit message (Collapse)AuthorFilesLines
2022-07-27Replace stateful widgets with new `iced_pure` APILibravatar Héctor Ramón Jiménez2-575/+0
2022-07-09Fix Wasm build of `todos` exampleLibravatar Héctor Ramón Jiménez1-7/+7
2022-07-09Fix `clippy` lints for all crates and featuresLibravatar Héctor Ramón Jiménez1-14/+14
... and check those in CI as well!
2022-06-29Introduce `StyleSheet` for `Text` widgetLibravatar Héctor Ramón Jiménez1-3/+3
2022-05-14Draft first-class `Theme` supportLibravatar Héctor Ramón Jiménez1-59/+7
RFC: https://github.com/iced-rs/rfcs/pull/6
2022-03-16Export widget modules in `iced_pure`Libravatar Héctor Ramón Jiménez1-2/+3
... and fix collisions with the new `helpers`
2022-03-08Remove superfluous files from `pure` examplesLibravatar Héctor Ramón Jiménez2-32/+0
2022-02-12Add `max_width` to `Column` in `iced_pure`Libravatar Héctor Ramón Jiménez1-1/+9
2022-02-12Implement missing `on_event` and `mouse_interaction` for `Checkbox` in ↵Libravatar Héctor Ramón Jiménez1-1/+1
`iced_pure`
2022-02-12Implement pure version of `todos` example :tada:Libravatar Héctor Ramón Jiménez4-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`.