summaryrefslogtreecommitdiffstats
path: root/examples/geometry (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Update all `examples` to Rust 2024Libravatar Héctor Ramón Jiménez2025-02-212-3/+3
|
* Add helper functions for alignment to `widget` moduleLibravatar Héctor Ramón Jiménez2025-01-241-4/+4
|
* Fix new `clippy` lintsLibravatar Héctor Ramón Jiménez2024-12-021-1/+1
|
* Ask for explicit `Length` in `center_*` methodsLibravatar Héctor Ramón Jiménez2024-05-131-3/+3
|
* Introduce `center` widget helperLibravatar Héctor Ramón Jiménez2024-05-031-8/+3
| | | | | | | | ... and also make `center_x` and `center_y` set `width` and `height` to `Length::Fill`, respectively. This targets the most common use case when centering things and removes a bunch of boilerplate as a result.
* Decouple caching from layering and simplify everythingLibravatar Héctor Ramón Jiménez2024-04-051-1/+1
|
* Redesign `iced_wgpu` layering architectureLibravatar Héctor Ramón Jiménez2024-04-031-1/+5
|
* Implement composable, type-safe renderer fallbackLibravatar Héctor Ramón Jiménez2024-03-211-1/+3
|
* Remove `sandbox` by making `application` more generic :tada:Libravatar Héctor Ramón Jiménez2024-03-161-1/+1
|
* Introduce `Program` APILibravatar Héctor Ramón Jiménez2024-03-161-37/+21
|
* Convert `Renderer::Theme` to generic `Widget` typeLibravatar Héctor Ramón Jiménez2024-01-211-2/+2
|
* Introduce useful helpers in `layout` moduleLibravatar Héctor Ramón Jiménez2024-01-101-2/+2
|
* Replace `width` and `height` with `Widget::size`Libravatar Héctor Ramón Jiménez2024-01-101-6/+5
|
* Make `Shrink` have priority over `Fill` in layoutLibravatar Héctor Ramón Jiménez2024-01-041-1/+1
|
* Merge branch 'master' into explicit-text-cachingLibravatar Héctor Ramón Jiménez2023-09-102-4/+3
|\
| * Host GIFs and video examples in `iced.rs`Libravatar Héctor Ramón Jiménez2023-09-071-3/+1
| | | | | | | | RIP Gfycat
| * Use workspace dependencies and package inheritanceLibravatar Héctor Ramón Jiménez2023-09-041-1/+2
| | | | | | | | | | | | We are also taking this as a chance to synchronize the versions of all the crates! Because of this, we will skip the `0.11` version.
* | Make `widget::Tree` mutable in `Widget::layout`Libravatar Héctor Ramón Jiménez2023-08-301-1/+1
| |
* | Implement explicit text caching in the widget state treeLibravatar Héctor Ramón Jiménez2023-08-301-0/+1
|/
* Decouple `Mesh` primitives from main `Primitive` typeLibravatar Héctor Ramón Jiménez2023-06-291-14/+13
|
* Introduce custom backend-specific primitivesLibravatar Héctor Ramón Jiménez2023-06-292-5/+3
|
* Take `Rectangle` by value in `Cursor` APILibravatar Héctor Ramón Jiménez2023-06-081-1/+1
|
* Implement basic cursor availabilityLibravatar Héctor Ramón Jiménez2023-06-081-19/+21
|
* Introduce `web-colors` feature flag to enable sRGB linear blendingLibravatar Héctor Ramón Jiménez2023-05-311-9/+10
| | | | | | | | | | | | | | | This is how browsers perform color management. They treat gamma-corrected sRGB colors as if they were linear RGB. Correctness aside, this mode is introduced for legacy reasons. Most UI/UX tooling uses this color management as well, and many have created an intuition about how color should behave from interacting with a browser. This feature flag should facilitate application development with `iced` in those cases. More details: https://webcolorisstillbroken.com/
* Create `iced_widget` subcrate and re-organize the whole codebaseLibravatar Héctor Ramón Jiménez2023-03-042-29/+12
|
* Implement `Canvas` support for `iced_tiny_skia`Libravatar Héctor Ramón Jiménez2023-03-011-3/+3
|
* Derive `Default` for `Rainbow` in `geometry` exampleLibravatar Héctor Ramón Jiménez2022-11-281-6/+5
|
* Re-introduce the `geometry` exampleLibravatar Héctor Ramón Jiménez2022-11-283-0/+242
|
* Readjusted namespaces, removed Geometry example as it's no longer relevant.Libravatar shan2022-10-053-251/+0
|
* Adds linear gradient support to 2D meshes in the canvas widget.Libravatar shan2022-09-291-18/+23
|
* Replace stateful widgets with new `iced_pure` APILibravatar Héctor Ramón Jiménez2022-07-271-31/+26
|
* Fix `clippy` lints for all crates and featuresLibravatar Héctor Ramón Jiménez2022-07-091-3/+4
| | | | ... and check those in CI as well!
* Draft first-class `Theme` supportLibravatar Héctor Ramón Jiménez2022-05-141-5/+6
| | | | RFC: https://github.com/iced-rs/rfcs/pull/6
* Remove `hash_layout` method from `Widget` traitLibravatar Héctor Ramón Jiménez2022-02-231-4/+1
|
* Update Rust edition to 2021 :tada:Libravatar Héctor Ramón Jiménez2022-02-091-1/+1
|
* Migrate `geometry` example to new `Renderer` APILibravatar Héctor Ramón Jiménez2021-10-301-95/+95
|
* Move `Defaults` from `iced_graphics` to `iced_native`Libravatar Héctor Ramón Jiménez2021-10-181-7/+6
|
* Remove trait-specific draw logic in `iced_native`Libravatar Héctor Ramón Jiménez2021-10-141-91/+92
|
* Refactor alignment types into an `alignment` moduleLibravatar Héctor Ramón Jiménez2021-09-201-2/+2
|
* Introduce and use `CrossAlign` enum for `Column` and `Row`Libravatar Héctor Ramón Jiménez2021-09-201-3/+3
|
* Introduce `viewport` to `Widget::draw`Libravatar Héctor Ramón Jiménez2020-10-281-2/+3
| | | | | This should eventually allow us to only generate primitives that are visible.
* Make `Application` and `Sandbox` return a `Result`Libravatar Héctor Ramón Jiménez2020-09-081-1/+1
|
* Implement `iced_glutin` :tada:Libravatar Héctor Ramón Jiménez2020-05-212-10/+16
|
* Rename `MouseCursor` to `mouse::Interaction`Libravatar Héctor Ramón Jiménez2020-04-301-4/+4
|
* Remove `OutOfBounds` variant from `MouseCursor`Libravatar Héctor Ramón Jiménez2020-04-291-1/+1
|
* Clip and cull `Mesh2D` primitives in `iced_wgpu`Libravatar Héctor Ramón Jiménez2020-04-281-0/+1
|
* Introduce `Translate` primitive in `iced_wgpu`Libravatar Héctor Ramón Jiménez2020-04-281-53/+55
|
* Implement `Primitive::Cached`Libravatar Héctor Ramón Jiménez2020-03-071-2/+2
|
* Create `README` files for all the examplesLibravatar Héctor Ramón Jiménez2020-02-211-0/+18
|
* Fix examples using `Mesh2D`Libravatar Héctor Ramón Jiménez2020-02-121-60/+63
|