summaryrefslogtreecommitdiffstats
path: root/pure/src/lib.rs (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Replace stateful widgets with new `iced_pure` APILibravatar Héctor Ramón Jiménez2022-07-271-292/+0
|
* Fix `clippy` lints for all crates and featuresLibravatar Héctor Ramón Jiménez2022-07-091-4/+4
| | | | ... and check those in CI as well!
* Fix further `clippy` lintsLibravatar Héctor Ramón Jiménez2022-07-091-4/+12
| | | | ... and explicitly annotate crates as well.
* Address Clippy lintsLibravatar Poly2022-07-091-1/+1
|
* Draft first-class `Theme` supportLibravatar Héctor Ramón Jiménez2022-05-141-1/+5
| | | | RFC: https://github.com/iced-rs/rfcs/pull/6
* Expose pure flex module as publicLibravatar Cory Forsstrom2022-05-051-2/+1
|
* Forbid `unused_results` and `rust_2018_idioms` in `iced_pure`Libravatar Héctor Ramón Jiménez2022-05-021-4/+3
|
* Write documentation for `iced_pure`Libravatar Héctor Ramón Jiménez2022-05-021-0/+119
|
* 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-291-2/+2
|
* Export widget modules in `iced_pure`Libravatar Héctor Ramón Jiménez2022-03-161-1/+6
| | | | ... and fix collisions with the new `helpers`
* Merge branch 'master' into virtual-widgetsLibravatar Héctor Ramón Jiménez2022-03-071-5/+1
|
* Add `overlay` support in `iced_pure` and port `PickList` :tada:Libravatar Héctor Ramón Jiménez2022-02-161-0/+13
|
* Implement pure version of `todos` example :tada:Libravatar Héctor Ramón Jiménez2022-02-121-1/+2
| | | | | | | | 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`.
* Allow pure widgets to borrow from `Application` data :tada:Libravatar Héctor Ramón Jiménez2022-02-111-29/+25
|
* Rename `iced_virtual` to `iced_pure`Libravatar Héctor Ramón Jiménez2022-02-111-0/+146
`virtual` is a reserved keyword in Rust :grimacing: