summaryrefslogtreecommitdiffstats
path: root/pure/src/widget/tree.rs (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Replace stateful widgets with new `iced_pure` APILibravatar Héctor Ramón Jiménez2022-07-271-176/+0
|
* Draft first-class `Theme` supportLibravatar Héctor Ramón Jiménez2022-05-141-3/+10
| | | | RFC: https://github.com/iced-rs/rfcs/pull/6
* Use `Borrow` instead of `AsRef` to allow easier castingLibravatar Héctor Ramón Jiménez2022-05-061-8/+9
|
* Take `AsRef<Widget>` instead of `Element` in `Tree` APILibravatar Héctor Ramón Jiménez2022-05-061-13/+19
|
* Write documentation for `iced_pure`Libravatar Héctor Ramón Jiménez2022-05-021-7/+41
|
* Export widget modules in `iced_pure`Libravatar Héctor Ramón Jiménez2022-03-161-1/+1
| | | | ... and fix collisions with the new `helpers`
* Implement `pure` version of `PaneGrid` widgetLibravatar Héctor Ramón Jiménez2022-03-141-2/+15
|
* Introduce `Tag` and `State` opaque types in `iced_pure::widget::tree`Libravatar Héctor Ramón Jiménez2022-02-161-8/+44
|
* Implement pure version of `todos` example :tada:Libravatar Héctor Ramón Jiménez2022-02-121-22/+22
| | | | | | | | 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 `Scrollable` in `iced_pure`Libravatar Héctor Ramón Jiménez2022-02-121-7/+11
|
* Expose reusable `Button` logicLibravatar Héctor Ramón Jiménez2022-02-111-0/+14
| | | | ... and reuse it in `iced_pure`!
* Allow pure widgets to borrow from `Application` data :tada:Libravatar Héctor Ramón Jiménez2022-02-111-23/+26
|
* Rename `iced_virtual` to `iced_pure`Libravatar Héctor Ramón Jiménez2022-02-111-0/+58
`virtual` is a reserved keyword in Rust :grimacing: