Simon Hausmann
Simon Hausmann
* Fluent UI's [semantic colors](https://docs.microsoft.com/en-us/javascript/api/theme/isemanticcolors?view=office-ui-fabric-react-latest) ([Source](https://github.com/microsoft/fluentui/blob/master/packages/theme/src/types/ISemanticColors.ts)) . See also the "Semantic Slots" under "Theme Slots" in the [Fluent UI Theme Designer](https://fabricweb.z5.web.core.windows.net/pr-deploy-site/refs/heads/7.0/theming-designer/index.html)
I think that's a very good idea. The CSS [color-mix()](https://developer.mozilla.org/en-US/docs/Web/CSS/color_value/color-mix()) function takes that a step further by adding a color space parameter. API wise that might be even better for...
Coming from #1315 I'm wondering if the palette should perhaps be a model instead of a struct, and the rows are roles. If the palette was a struct and we'd...
Ahh, interesting idea - this combines after all. We could use a model in the implementation but hide it behind the syntax you're proposing. Let me see if I understood...
Kind contributor @StratusFearMe21 is working on supporting direct rendering in winit and glutin: https://github.com/rust-windowing/winit/pull/2272 🚀 This would enable Slint as well.
Fixed by commit be7947a3213fd706e6bc891c3fbf43c25e0f6696 that upgrades winit to version 0.27, which in turn includes the fix. Confirmed on macOS.
Even if we can't create this lazily anymore, we can still achieve a similar effect of optimization: When rendering a `Clip` element with a border radius: 1. Check if any...
Yes, this is missing functionality. I think #251 captures the same, with some discussion.
At the heart of the issue lies that the binding for the checked property is destroyed: ```60 CheckBox { text: todo.title; checked: todo.checked; toggled => { todo.checked = checked; }...
I've begun prototyping an approach that tries to detect two-way bindings in model data structures, synthesise a property for it and update it in the model update function. Diagnostics wise...