summaryrefslogtreecommitdiffstats
path: root/pure/src/widget/text.rs (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Replace stateful widgets with new `iced_pure` APILibravatar Héctor Ramón Jiménez2022-07-271-77/+0
|
* Fix `clippy` lints for all crates and featuresLibravatar Héctor Ramón Jiménez2022-07-091-7/+7
| | | | ... and check those in CI as well!
* Introduce `StyleSheet` for `Text` widgetLibravatar Héctor Ramón Jiménez2022-06-291-1/+6
|
* Draft first-class `Theme` supportLibravatar Héctor Ramón Jiménez2022-05-141-0/+2
| | | | RFC: https://github.com/iced-rs/rfcs/pull/6
* Loose lifetime bounds in `pure::Widget` implementationsLibravatar Héctor Ramón Jiménez2022-03-291-2/+2
|
* 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-161-1/+2
| | | | ... and fix collisions with the new `helpers`
* Merge branch 'master' into virtual-widgetsLibravatar Héctor Ramón Jiménez2022-03-071-7/+1
|
* Introduce `Tag` and `State` opaque types in `iced_pure::widget::tree`Libravatar Héctor Ramón Jiménez2022-02-161-16/+0
|
* Implement pure version of `todos` example :tada:Libravatar Héctor Ramón Jiménez2022-02-121-2/+4
| | | | | | | | 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`.
* Reuse `Text` widget from `iced_native` in `iced_pure`Libravatar Héctor Ramón Jiménez2022-02-121-114/+17
|
* Allow pure widgets to borrow from `Application` data :tada:Libravatar Héctor Ramón Jiménez2022-02-111-5/+7
|
* Expose function helpers to build widgets in `pure::widget`Libravatar Héctor Ramón Jiménez2022-02-111-2/+2
| | | | | `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-111-0/+185
`virtual` is a reserved keyword in Rust :grimacing: