summaryrefslogtreecommitdiffstats
path: root/examples/pure (unfollow)
Commit message (Collapse)AuthorFilesLines
2022-07-27Replace stateful widgets with new `iced_pure` APILibravatar Héctor Ramón Jiménez25-3791/+0
2022-07-27Fix small lint in `pure_color_palette` exampleLibravatar Héctor Ramón Jiménez1-1/+1
2022-07-27add pure version of color_palette exampleLibravatar Max Unsted4-0/+490
2022-07-10Use `Palette` consistently in `arc` exampleLibravatar Héctor Ramón Jiménez1-6/+4
2022-07-10Fix `README` or `arc` exampleLibravatar Héctor Ramón Jiménez1-2/+2
2022-07-10Add and purify `arc` example by @ThatsNoMoonLibravatar Héctor Ramón Jiménez3-0/+149
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énez5-31/+22
... and check those in CI as well!
2022-06-29Introduce `StyleSheet` for `Text` widgetLibravatar Héctor Ramón Jiménez4-10/+12
2022-06-07Implement theme styling for `Canvas`Libravatar Héctor Ramón Jiménez1-2/+4
2022-06-07Use `Theme::Dark` in `pure_game_of_life` exampleLibravatar Héctor Ramón Jiménez1-0/+4
2022-06-07Implement theme styling for `PickList` and `Menu`Libravatar Héctor Ramón Jiménez2-59/+1
2022-06-07Implement theme styling for `Container`Libravatar Héctor Ramón Jiménez4-74/+41
2022-06-07Implement theme styling for `TextInput`Libravatar Héctor Ramón Jiménez1-2/+4
2022-05-26Fix examples and doc-testsLibravatar Héctor Ramón Jiménez3-59/+4
2022-05-26Rename `Variant` to `Style` and `Style` to `Appearance`Libravatar Héctor Ramón Jiménez1-4/+0
2022-05-25Let a `Theme` control the background color of an applicationLibravatar Héctor Ramón Jiménez1-5/+1
... and remove `Application::background_color`
2022-05-14Draft first-class `Theme` supportLibravatar Héctor Ramón Jiménez6-238/+41
RFC: https://github.com/iced-rs/rfcs/pull/6
2022-04-25remove exampleLibravatar Nick Senger1-9/+5
2022-04-25add exampleLibravatar Nick Senger1-5/+9
2022-04-22Implemented Tooltip as PureLibravatar Casper Rogild Storm2-0/+102
2022-04-18Revert "add example"Libravatar Nick Senger2-113/+0
This reverts commit 11986547cbe772fa0bb863cefc3fff7877d1a6d5.
2022-04-18add exampleLibravatar Nick Senger2-0/+113
2022-04-06remove exampleLibravatar Nick Senger2-178/+0
2022-04-06add exampleLibravatar Nick Senger2-0/+178
2022-03-18Reintroduce generic `Message` type for `canvas::Program`Libravatar Héctor Ramón Jiménez1-2/+1
As it is useful to make the `Message` completely free in many implementations.
2022-03-16Export widget modules in `iced_pure`Libravatar Héctor Ramón Jiménez8-18/+16
... and fix collisions with the new `helpers`
2022-03-14Implement `pure` version of `pane_grid` example :tada:Libravatar Héctor Ramón Jiménez1-13/+12
2022-03-14Implement `pure` version of `PaneGrid` widgetLibravatar Héctor Ramón Jiménez2-0/+448
2022-03-09Implement `pure` version of `game_of_life` example :tada:Libravatar Héctor Ramón Jiménez5-0/+1262
2022-03-08Remove superfluous files from `pure` examplesLibravatar Héctor Ramón Jiménez7-120/+0
2022-03-07Implement `pure::Responsive` in `iced_lazy`Libravatar Héctor Ramón Jiménez1-2/+2
2022-02-17Implement `pure` version of `component` exampleLibravatar Héctor Ramón Jiménez2-0/+179
2022-02-16Implement `pure` version of `pick_list` example :tada:Libravatar Héctor Ramón Jiménez3-0/+138
2022-02-13Implement `pure` version of the `tour` example :tada:Libravatar Héctor Ramón Jiménez4-0/+752
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`.
2022-02-12Reuse `Text` widget from `iced_native` in `iced_pure`Libravatar Héctor Ramón Jiménez1-1/+1
2022-02-11Expose function helpers to build widgets in `pure::widget`Libravatar Héctor Ramón Jiménez1-5/+6
`button("Hello")` is easier to write and read than `Button::new("Hello")`.
2022-02-11Expose `iced_pure` through a `pure` feature in `iced`Libravatar Héctor Ramón Jiménez2-14/+8
Besides exposing the `iced_pure` crate, enabling the `pure` feature also provides pure versions of both the `Application` and `Sandbox` traits! :tada:
2022-02-11Rename `iced_virtual` to `iced_pure`Libravatar Héctor Ramón Jiménez4-0/+94
`virtual` is a reserved keyword in Rust :grimacing: