summaryrefslogtreecommitdiffstats
path: root/examples/pure (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Introduce `StyleSheet` for `Text` widgetLibravatar Héctor Ramón Jiménez2022-06-294-10/+12
|
* Implement theme styling for `Canvas`Libravatar Héctor Ramón Jiménez2022-06-071-2/+4
|
* Use `Theme::Dark` in `pure_game_of_life` exampleLibravatar Héctor Ramón Jiménez2022-06-071-0/+4
|
* Implement theme styling for `PickList` and `Menu`Libravatar Héctor Ramón Jiménez2022-06-072-59/+1
|
* Implement theme styling for `Container`Libravatar Héctor Ramón Jiménez2022-06-074-74/+41
|
* Implement theme styling for `TextInput`Libravatar Héctor Ramón Jiménez2022-06-071-2/+4
|
* Fix examples and doc-testsLibravatar Héctor Ramón Jiménez2022-05-263-59/+4
|
* Rename `Variant` to `Style` and `Style` to `Appearance`Libravatar Héctor Ramón Jiménez2022-05-261-4/+0
|
* Let a `Theme` control the background color of an applicationLibravatar Héctor Ramón Jiménez2022-05-251-5/+1
| | | | ... and remove `Application::background_color`
* Draft first-class `Theme` supportLibravatar Héctor Ramón Jiménez2022-05-146-238/+41
| | | | RFC: https://github.com/iced-rs/rfcs/pull/6
* Implemented Tooltip as PureLibravatar Casper Rogild Storm2022-04-222-0/+102
|
* Reintroduce generic `Message` type for `canvas::Program`Libravatar Héctor Ramón Jiménez2022-03-181-2/+1
| | | | | As it is useful to make the `Message` completely free in many implementations.
* Export widget modules in `iced_pure`Libravatar Héctor Ramón Jiménez2022-03-168-18/+16
| | | | ... and fix collisions with the new `helpers`
* Implement `pure` version of `pane_grid` example :tada:Libravatar Héctor Ramón Jiménez2022-03-141-13/+12
|
* Implement `pure` version of `PaneGrid` widgetLibravatar Héctor Ramón Jiménez2022-03-142-0/+448
|
* Implement `pure` version of `game_of_life` example :tada:Libravatar Héctor Ramón Jiménez2022-03-095-0/+1262
|
* Remove superfluous files from `pure` examplesLibravatar Héctor Ramón Jiménez2022-03-087-120/+0
|
* Implement `pure::Responsive` in `iced_lazy`Libravatar Héctor Ramón Jiménez2022-03-071-2/+2
|
* Implement `pure` version of `component` exampleLibravatar Héctor Ramón Jiménez2022-02-172-0/+179
|
* Implement `pure` version of `pick_list` example :tada:Libravatar Héctor Ramón Jiménez2022-02-163-0/+138
|
* Implement `pure` version of the `tour` example :tada:Libravatar Héctor Ramón Jiménez2022-02-134-0/+752
|
* 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: