iced
iced copied to clipboard
A cross-platform GUI library for Rust, inspired by Elm
### Is there an existing issue for this? - [X] I have searched the existing issues. ### Is this issue related to iced? - [X] My hardware is compatible and...
For example, on Gentoo we have to install `media-libs/vulkan-loader`, otherwise it will not work.
Fix drop down not closing when inside scrollable and user clicks outside the scrollable. This is because the scrollable sets -1.0 on cursor.y for any events where cursor is outside...
Glutin 0.30 drops the dependency on `winit`, allowing it to be used with winit or other things that can provide a raw window handle. (Perhaps this could change the relationship...
This shows `iced_glow` outperforming `iced_wgpu`. Probably not accurate, some something may be wrong in the rendering and timing here? It should also test with more primitivies. Tests pass when combined...
During layout, padding isn't constrained to the difference between the child widget and parent widgets max limits. This causes the parent widget to have the wrong resolved size and for...
Based on my testing, removing the `+ 0.5` and `- 1.0` here makes off-screen rendering of an image primitive output exactly the same data as the input image. Changing to...
Used by enabling the `dynamic` feature. This reduces the compile time from about 30 seconds to 5-8 seconds for me in a personal project. See #849
Is there a reason this was using BGRA? RGBA is more common, though BGR was historically popular at one point. `image` 0.24 has removed support for BGR images. `image::Handle::from_pixels()` is...
This seems to be generally considered the preferred, idiomatic solution now. This is in the standard library behind a feature flag (apparently now called `std::sync::LazyLock`).