Commit message (Collapse) | Author | Files | Lines | ||
---|---|---|---|---|---|
2022-07-27 | Replace stateful widgets with new `iced_pure` API | 25 | -3791/+0 | ||
2022-07-27 | Fix small lint in `pure_color_palette` example | 1 | -1/+1 | ||
2022-07-27 | add pure version of color_palette example | 4 | -0/+490 | ||
2022-07-10 | Use `Palette` consistently in `arc` example | 1 | -6/+4 | ||
2022-07-10 | Fix `README` or `arc` example | 1 | -2/+2 | ||
2022-07-10 | Add and purify `arc` example by @ThatsNoMoon | 3 | -0/+149 | ||
2022-07-09 | Fix Wasm build of `todos` example | 1 | -7/+7 | ||
2022-07-09 | Fix `clippy` lints for all crates and features | 5 | -31/+22 | ||
... and check those in CI as well! | |||||
2022-06-29 | Introduce `StyleSheet` for `Text` widget | 4 | -10/+12 | ||
2022-06-07 | Implement theme styling for `Canvas` | 1 | -2/+4 | ||
2022-06-07 | Use `Theme::Dark` in `pure_game_of_life` example | 1 | -0/+4 | ||
2022-06-07 | Implement theme styling for `PickList` and `Menu` | 2 | -59/+1 | ||
2022-06-07 | Implement theme styling for `Container` | 4 | -74/+41 | ||
2022-06-07 | Implement theme styling for `TextInput` | 1 | -2/+4 | ||
2022-05-26 | Fix examples and doc-tests | 3 | -59/+4 | ||
2022-05-26 | Rename `Variant` to `Style` and `Style` to `Appearance` | 1 | -4/+0 | ||
2022-05-25 | Let a `Theme` control the background color of an application | 1 | -5/+1 | ||
... and remove `Application::background_color` | |||||
2022-05-14 | Draft first-class `Theme` support | 6 | -238/+41 | ||
RFC: https://github.com/iced-rs/rfcs/pull/6 | |||||
2022-04-25 | remove example | 1 | -9/+5 | ||
2022-04-25 | add example | 1 | -5/+9 | ||
2022-04-22 | Implemented Tooltip as Pure | 2 | -0/+102 | ||
2022-04-18 | Revert "add example" | 2 | -113/+0 | ||
This reverts commit 11986547cbe772fa0bb863cefc3fff7877d1a6d5. | |||||
2022-04-18 | add example | 2 | -0/+113 | ||
2022-04-06 | remove example | 2 | -178/+0 | ||
2022-04-06 | add example | 2 | -0/+178 | ||
2022-03-18 | Reintroduce generic `Message` type for `canvas::Program` | 1 | -2/+1 | ||
As it is useful to make the `Message` completely free in many implementations. | |||||
2022-03-16 | Export widget modules in `iced_pure` | 8 | -18/+16 | ||
... and fix collisions with the new `helpers` | |||||
2022-03-14 | Implement `pure` version of `pane_grid` example :tada: | 1 | -13/+12 | ||
2022-03-14 | Implement `pure` version of `PaneGrid` widget | 2 | -0/+448 | ||
2022-03-09 | Implement `pure` version of `game_of_life` example :tada: | 5 | -0/+1262 | ||
2022-03-08 | Remove superfluous files from `pure` examples | 7 | -120/+0 | ||
2022-03-07 | Implement `pure::Responsive` in `iced_lazy` | 1 | -2/+2 | ||
2022-02-17 | Implement `pure` version of `component` example | 2 | -0/+179 | ||
2022-02-16 | Implement `pure` version of `pick_list` example :tada: | 3 | -0/+138 | ||
2022-02-13 | Implement `pure` version of the `tour` example :tada: | 4 | -0/+752 | ||
2022-02-12 | Add `max_width` to `Column` in `iced_pure` | 1 | -1/+9 | ||
2022-02-12 | Implement missing `on_event` and `mouse_interaction` for `Checkbox` in ↵ | 1 | -1/+1 | ||
`iced_pure` | |||||
2022-02-12 | Implement pure version of `todos` example :tada: | 4 | -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-12 | Reuse `Text` widget from `iced_native` in `iced_pure` | 1 | -1/+1 | ||
2022-02-11 | Expose function helpers to build widgets in `pure::widget` | 1 | -5/+6 | ||
`button("Hello")` is easier to write and read than `Button::new("Hello")`. | |||||
2022-02-11 | Expose `iced_pure` through a `pure` feature in `iced` | 2 | -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-11 | Rename `iced_virtual` to `iced_pure` | 4 | -0/+94 | ||
`virtual` is a reserved keyword in Rust :grimacing: |