summaryrefslogtreecommitdiffstats
path: root/lazy/src/pure (unfollow)
Commit message (Collapse)AuthorFilesLines
2022-07-27Replace stateful widgets with new `iced_pure` APILibravatar Héctor Ramón Jiménez2-867/+0
2022-07-09Fix `clippy` lints for all crates and featuresLibravatar Héctor Ramón Jiménez2-2/+2
... and check those in CI as well!
2022-07-09Fix further `clippy` lintsLibravatar Héctor Ramón Jiménez2-3/+3
... and explicitly annotate crates as well.
2022-07-01Fix `Widget::tag` implementation of `pure::Canvas`Libravatar Héctor Ramón Jiménez1-2/+1
Using `P::State` can cause a panic if the `Canvas` has `()` as `P::State` and replaces a stateless widget in a future `view` call.
2022-05-14Draft first-class `Theme` supportLibravatar Héctor Ramón Jiménez2-3/+12
RFC: https://github.com/iced-rs/rfcs/pull/6
2022-05-13remove rebuild of component overlay from `on_event`Libravatar Nick Senger1-10/+1
2022-05-13Revert "fix: prevent building overlay with stale layout"Libravatar Héctor Ramón Jiménez1-30/+10
This reverts commit 3be8f6e98990f7e8a3af11400bbecaecddda336c.
2022-05-10fix: prevent building overlay with stale layoutLibravatar Nick Senger1-10/+30
2022-04-25fix: panic when using pure component in pure responsiveLibravatar Nick Senger1-2/+3
2022-04-18fix: tree node passed in `component::OverlayInstance::on_event`Libravatar Nick Senger1-1/+1
2022-04-18fix: diffing issue with pure stateless componentsLibravatar Nick Senger1-1/+3
2022-04-17fix: diff widget tree after local event processing in `Component`Libravatar Nick Senger1-36/+36
2022-04-06fix: overlayLibravatar Nick Senger1-14/+14
2022-04-06fix: nested componentsLibravatar Nick Senger1-22/+30
2022-03-16Export widget modules in `iced_pure`Libravatar Héctor Ramón Jiménez1-1/+1
... and fix collisions with the new `helpers`
2022-03-14Fix incorrect `layout` in `Widget::overlay` for `pure::Responsive`Libravatar Héctor Ramón Jiménez1-5/+21
2022-03-07Implement `pure::Responsive` in `iced_lazy`Libravatar Héctor Ramón Jiménez1-0/+365
2022-03-07Introduce `rebuild_element` helper in `lazy::pure::Component`Libravatar Héctor Ramón Jiménez1-26/+16
2022-03-07Initialize `lazy::pure::Component` view properlyLibravatar Héctor Ramón Jiménez1-21/+26
... during `children` and `diff` in the `Widget` implementation
2022-02-17Implement `pure::Component` in `iced_lazy`Libravatar Héctor Ramón Jiménez1-0/+500