summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
| * | Fix incorrect `layout` in `Widget::overlay` for `pure::Responsive`Libravatar Héctor Ramón Jiménez2022-03-141-5/+21
| | |
| * | Implement `pure` version of `ProgressBar` widgetLibravatar Héctor Ramón Jiménez2022-03-102-0/+114
| | |
| * | Implement `pure` version of `Rule` widgetLibravatar Héctor Ramón Jiménez2022-03-103-6/+116
| | |
| * | Implement `Widget::tag` for `pure::Canvas`Libravatar Héctor Ramón Jiménez2022-03-091-0/+4
| | |
| * | Implement `pure` version of `game_of_life` example :tada:Libravatar Héctor Ramón Jiménez2022-03-097-3/+1266
| | |
| * | Implement `pure` version of `Canvas` widgetLibravatar Héctor Ramón Jiménez2022-03-097-1/+355
| | |
| * | Use associated type for `Message` in a `canvas::Program`Libravatar Héctor Ramón Jiménez2022-03-097-24/+37
| | |
| * | Remove redundant `widget` modules in subcratesLibravatar Héctor Ramón Jiménez2022-03-0962-783/+228
| | | | | | | | | | | | Instead, we can define the type aliases just once in the root crate!
| * | 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-073-3/+398
| | |
| * | Introduce `rebuild_element` helper in `lazy::pure::Component`Libravatar Héctor Ramón Jiménez2022-03-071-26/+16
| | |
| * | Initialize `lazy::pure::Component` view properlyLibravatar Héctor Ramón Jiménez2022-03-071-21/+26
| | | | | | | | | | | | ... during `children` and `diff` in the `Widget` implementation
| * | Merge branch 'master' into virtual-widgetsLibravatar Héctor Ramón Jiménez2022-03-073-20/+52
| |\ \
| * \ \ Merge branch 'master' into virtual-widgetsLibravatar Héctor Ramón Jiménez2022-03-0758-920/+457
| |\ \ \
| * | | | Fix `subscription` for `iced::pure::Application`Libravatar Héctor Ramón Jiménez2022-02-201-0/+4
| | | | |
| * | | | Implement `pure` version of `component` exampleLibravatar Héctor Ramón Jiménez2022-02-173-0/+180
| | | | |
| * | | | Implement `pure::Component` in `iced_lazy`Libravatar Héctor Ramón Jiménez2022-02-1713-21/+530
| | | | |
| * | | | Implement `pure` version of `pick_list` example :tada:Libravatar Héctor Ramón Jiménez2022-02-164-0/+139
| | | | |
| * | | | Fix `overlay` translation for `Scrollable` in `iced_pure`Libravatar Héctor Ramón Jiménez2022-02-161-6/+19
| | | | |
| * | | | Add `pick_list` function helper in `iced_pure::widget`Libravatar Héctor Ramón Jiménez2022-02-161-0/+15
| | | | |
| * | | | Add `overlay` support in `iced_pure` and port `PickList` :tada:Libravatar Héctor Ramón Jiménez2022-02-1610-240/+717
| | | | |
| * | | | Introduce `Tag` and `State` opaque types in `iced_pure::widget::tree`Libravatar Héctor Ramón Jiménez2022-02-1616-197/+101
| | | | |
| * | | | Implement `pure` version of the `tour` example :tada:Libravatar Héctor Ramón Jiménez2022-02-135-0/+753
| | | | |
| * | | | Implement `Space` in `iced_pure`Libravatar Héctor Ramón Jiménez2022-02-132-0/+133
| | | | |
| * | | | Implement `Radio` in `iced_pure`Libravatar Héctor Ramón Jiménez2022-02-133-1/+142
| | | | |
| * | | | Expose additional helpers in `iced::pure`Libravatar Héctor Ramón Jiménez2022-02-132-5/+30
| | | | |
| * | | | Introduce lifetime to `on_change` handler for `Toggler`Libravatar Héctor Ramón Jiménez2022-02-131-2/+2
| | | | |
| * | | | Implement `Toggler` in `iced_pure`Libravatar Héctor Ramón Jiménez2022-02-133-0/+138
| | | | |
| * | | | Implement `Slider` in `iced_pure`Libravatar Héctor Ramón Jiménez2022-02-134-167/+503
| | | | |
| * | | | Implement `Image` in `iced_pure`Libravatar Héctor Ramón Jiménez2022-02-134-25/+134
| | | | |
| * | | | Add `max_width` to `Column` in `iced_pure`Libravatar Héctor Ramón Jiménez2022-02-122-2/+23
| | | | |
| * | | | Implement missing `on_event` and `mouse_interaction` for `Checkbox` in ↵Libravatar Héctor Ramón Jiménez2022-02-122-2/+42
| | | | | | | | | | | | | | | | | | | | `iced_pure`
| * | | | Implement pure version of `todos` example :tada:Libravatar Héctor Ramón Jiménez2022-02-1218-95/+916
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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`.
| * | | | Implement `TextInput` in `iced_pure`Libravatar Héctor Ramón Jiménez2022-02-123-448/+730
| | | | |
| * | | | Implement `Scrollable` in `iced_pure`Libravatar Héctor Ramón Jiménez2022-02-125-378/+810
| | | | |
| * | | | Implement `Checkbox` in `iced_pure`Libravatar Héctor Ramón Jiménez2022-02-123-2/+97
| | | | |
| * | | | Reuse `Text` widget from `iced_native` in `iced_pure`Libravatar Héctor Ramón Jiménez2022-02-123-116/+19
| | | | |
| * | | | Implement `Container` widget in `iced_pure`Libravatar Héctor Ramón Jiménez2022-02-123-22/+305
| | | | |
| * | | | Use `TypeId` of `()` for `Column` and `Row` tags in `iced_pure`Libravatar Héctor Ramón Jiménez2022-02-112-4/+2
| | | | |
| * | | | Implement `Row` in `iced_pure`Libravatar Héctor Ramón Jiménez2022-02-112-0/+229
| | | | |
| * | | | Complete `Button` in `iced_pure`Libravatar Héctor Ramón Jiménez2022-02-111-2/+32
| | | | |
| * | | | Expose reusable `Button` logicLibravatar Héctor Ramón Jiménez2022-02-115-247/+228
| | | | | | | | | | | | | | | | | | | | ... and reuse it in `iced_pure`!
| * | | | Allow pure widgets to borrow from `Application` data :tada:Libravatar Héctor Ramón Jiménez2022-02-1111-98/+103
| | | | |
| * | | | Expose function helpers to build widgets in `pure::widget`Libravatar Héctor Ramón Jiménez2022-02-113-7/+25
| | | | | | | | | | | | | | | | | | | | | | | | | `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-117-14/+344
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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-1115-15/+16
| | | | | | | | | | | | | | | | | | | | `virtual` is a reserved keyword in Rust :grimacing:
| * | | | Implement `Into<Element>` for `&'static str` in `iced_virtual`Libravatar Héctor Ramón Jiménez2022-02-105-14/+27
| | | | |
| * | | | Draft virtual `Button`, `Column`, and `Text`Libravatar Héctor Ramón Jiménez2022-02-1015-101/+1177
| | | | | | | | | | | | | | | | | | | | ... as well as a very naive diffing strategy!
| * | | | Draft `iced_virtual` subcrateLibravatar Héctor Ramón Jiménez2022-02-096-0/+223
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The idea here is to expose a set of "virtual widgets" that can be used with a `Virtual` widget and its `virtual::State`. A virtual widget is a widget that does not contain any state, but instead is a "virtual" representation of the "real" widget. The real widgets are stored in the `virtual::State`. Every time a new virtual widget tree is created during `view`, it is compared to the previous one and "real" widgets are added / removed to the `virtual::State`. Effectively, this removes the need to keep track of local widget state in the application state and allows `view` to take an immutable reference to `self`. To summarize, using this crate should allow users to remove `State` structs in their application state. Eventually, the strategy used here may be adopted generally and, as a result, all of the widgets in `iced_native` would be replaced!
* | | | | Merge pull request #1290 from iced-rs/fix/mesh-layer-orderLibravatar Héctor Ramón2022-03-182-16/+32
|\ \ \ \ \ | | | | | | | | | | | | Fix `canvas::Frame` issuing a new layer for `Mesh2D` in `with_clip`