summaryrefslogtreecommitdiffstats
path: root/pure (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Use State::new() for State::default()Libravatar 0x1922022-03-291-3/+1
|
* Implement `Default` for `pure::State`Libravatar 0x1922022-03-291-0/+8
| | | | Impure Applications using pure widgets can now use a struct implementing `Default`
* Loose lifetime bounds in `pure::Widget` implementationsLibravatar Héctor Ramón Jiménez2022-03-298-18/+18
|
* Forward overlay() calls in iced_pure::element::MapLibravatar Marien Zwart2022-03-261-2/+16
| | | | | | | | If Map does not override overlay(), calling map() on a pure Element breaks any pick_list inside it (its overlay does not appear). Fix it by implementing overlay() the same way iced_native::element::Map does.
* Implement `pure` version of `Svg` widgetLibravatar Héctor Ramón Jiménez2022-03-222-0/+64
|
* Use application lifetime in `Into<Element>` implementation for `&str`Libravatar Héctor Ramón Jiménez2022-03-221-2/+1
|
* Export widget modules in `iced_pure`Libravatar Héctor Ramón Jiménez2022-03-1619-181/+199
| | | | ... and fix collisions with the new `helpers`
* Implement `pure` version of `PaneGrid` widgetLibravatar Héctor Ramón Jiménez2022-03-145-2/+1102
|
* 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-102-0/+110
|
* Merge branch 'master' into virtual-widgetsLibravatar Héctor Ramón Jiménez2022-03-0717-151/+17
|
* Implement `pure::Component` in `iced_lazy`Libravatar Héctor Ramón Jiménez2022-02-179-21/+18
|
* 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-169-0/+353
|
* Introduce `Tag` and `State` opaque types in `iced_pure::widget::tree`Libravatar Héctor Ramón Jiménez2022-02-1616-197/+101
|
* 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-132-0/+141
|
* Expose additional helpers in `iced::pure`Libravatar Héctor Ramón Jiménez2022-02-131-4/+14
|
* 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-133-2/+271
|
* Implement `Image` in `iced_pure`Libravatar Héctor Ramón Jiménez2022-02-132-0/+81
|
* Add `max_width` to `Column` in `iced_pure`Libravatar Héctor Ramón Jiménez2022-02-121-1/+14
|
* Implement missing `on_event` and `mouse_interaction` for `Checkbox` in ↵Libravatar Héctor Ramón Jiménez2022-02-121-1/+41
| | | | `iced_pure`
* Implement pure version of `todos` example :tada:Libravatar Héctor Ramón Jiménez2022-02-1212-94/+261
| | | | | | | | 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-122-0/+253
|
* Implement `Scrollable` in `iced_pure`Libravatar Héctor Ramón Jiménez2022-02-124-9/+290
|
* Implement `Checkbox` in `iced_pure`Libravatar Héctor Ramón Jiménez2022-02-122-0/+95
|
* Reuse `Text` widget from `iced_native` in `iced_pure`Libravatar Héctor Ramón Jiménez2022-02-122-115/+18
|
* Implement `Container` widget in `iced_pure`Libravatar Héctor Ramón Jiménez2022-02-122-0/+269
|
* 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-112-124/+52
| | | | ... and reuse it in `iced_pure`!
* Allow pure widgets to borrow from `Application` data :tada:Libravatar Héctor Ramón Jiménez2022-02-118-93/+97
|
* Expose function helpers to build widgets in `pure::widget`Libravatar Héctor Ramón Jiménez2022-02-112-2/+19
| | | | | `button("Hello")` is easier to write and read than `Button::new("Hello")`.
* Rename `iced_virtual` to `iced_pure`Libravatar Héctor Ramón Jiménez2022-02-1110-0/+1216
`virtual` is a reserved keyword in Rust :grimacing: