Tasuku Suzuki
Tasuku Suzuki
I'd like to draw complex path with logical operations such as And(united), Or(intersected), NotOr(subtracted), and Xor. This would allow developers to combine and manipulate vector paths more easily.
https://slint.dev/ https://docs.slint.dev/latest/docs/slint/guide/language/concepts/slint-language/
- Use `kira` crate to play sound
User would use them to control the state of lighting components mainly. This partially reverts the commit 287a976bd0c5bd51b10431a7ebe7d29097228dde
- Add home-automation demo with Zephyr integration - Consolidate shared Zephyr configuration into demos/zephyr-common/ - boards/ configs, prj.conf, west.yaml, slint-zephyr platform layer - Update printerdemo to use shared configuration
This adds an `enabled` boolean property to the `animate` block, which defaults to `true`. When set to `false`, property changes apply immediately without animation, bypassing duration, easing, and iterations. -...
Resolves issue where gradients were not properly clipped along rounded rectangle boundaries in the software renderer. Fixes: #4176
Move MCU board support example files into their own directories as mod.rs files.
Data url format is useful when one tries slintpad with images. Image { source: @image-url("data:image/png;base64,iV....="); }
### Bug Description `-1deg.abs()` returns `-1deg` whereas `Math.abs(-1deg)` returns `1deg`. I expect `-1deg.abs()` equals `1deg`. ### Reproducible Code (if applicable) ```slint export component AbsAngle inherits VerticalLayout { Text { text:...