summaryrefslogtreecommitdiffstats
path: root/pure/src/widget/button.rs (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Replace stateful widgets with new `iced_pure` APILibravatar Héctor Ramón Jiménez2022-07-271-274/+0
|
* Fix `clippy` lints for all crates and featuresLibravatar Héctor Ramón Jiménez2022-07-091-5/+5
| | | | ... and check those in CI as well!
* Rename `Variant` to `Style` and `Style` to `Appearance`Libravatar Héctor Ramón Jiménez2022-05-261-9/+6
|
* Draft first-class `Theme` supportLibravatar Héctor Ramón Jiménez2022-05-141-8/+24
| | | | RFC: https://github.com/iced-rs/rfcs/pull/6
* Write documentation for `iced_pure`Libravatar Héctor Ramón Jiménez2022-05-021-0/+36
|
* Loose lifetime bounds in `pure::Widget` implementationsLibravatar Héctor Ramón Jiménez2022-03-291-4/+4
|
* Export widget modules in `iced_pure`Libravatar Héctor Ramón Jiménez2022-03-161-3/+4
| | | | ... and fix collisions with the new `helpers`
* Merge branch 'master' into virtual-widgetsLibravatar Héctor Ramón Jiménez2022-03-071-11/+1
|
* Implement `pure::Component` in `iced_lazy`Libravatar Héctor Ramón Jiménez2022-02-171-2/+2
|
* Add `overlay` support in `iced_pure` and port `PickList` :tada:Libravatar Héctor Ramón Jiménez2022-02-161-0/+14
|
* Introduce `Tag` and `State` opaque types in `iced_pure::widget::tree`Libravatar Héctor Ramón Jiménez2022-02-161-11/+10
|
* Implement pure version of `todos` example :tada:Libravatar Héctor Ramón Jiménez2022-02-121-2/+6
| | | | | | | | 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-2/+2
|
* 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-111-124/+38
| | | | ... and reuse it in `iced_pure`!
* Allow pure widgets to borrow from `Application` data :tada:Libravatar Héctor Ramón Jiménez2022-02-111-12/+13
|
* Rename `iced_virtual` to `iced_pure`Libravatar Héctor Ramón Jiménez2022-02-111-0/+272
`virtual` is a reserved keyword in Rust :grimacing: