-
Discussed in https://github.com/slint-ui/slint/discussions/3947#discussioncomment-7597955
```
export component Foo {
callback clickedA button.clicked;
callback clickedB button.clicked;…
-
On every field when I try to paste a value then it crashes, in Windows 11
After a relaunch, I can do that, but it usually does happen.
-
We currently have the wasm interpreter that we use in the documentation and the online editor.
We should add API so that we can also set/get properties and callback from JS on the browser
-
When a model is declared and initialised in `.slint`, it is exposed to JavaScript as pure JavaScript array that's a deep copy of the values:
```60
property foo: [1, 2, 3];
```
When access…
-
When the latest versions of `esp-hal` and `slint` are present simultaneously, a compilation error occurs:
```
[dependencies]
esp-hal = { version = "0.16.1", features = ["esp32c3"] }
sl…
-
thread 'main' panicked at /Users/runner/work/slint/slint/internal/core/model.rs:929:38:
already borrowed: BorrowMutError
stack backtrace:
0: 0x10558959c - ::fmt::h243268f17d714c7f
1: …
-
Slint 1.4.1 - 09a5c724bf3ba6e60acfb8ca6c6f3b2f14ee696d
In gallery example and other app, when I click at any item nothing happens, but when I again anywhere, then first operation ends and second st…
-
The following code produces an infinitely growing window:
```rs
fn main() {
MainWindow::new().unwrap().run().unwrap();
}
slint::slint! {
import { HorizontalBox, VerticalBox } from "s…
tp971 updated
9 months ago
-
Certain features such as the LinuxKMS backend or the Skia renderer have certain system requirements on system libraries and tools. We should document how to satisfy these requirements while building Y…
-
## Problem
When changing the model of a ComboBox the selected value is reset. This breaks UX in some cases.
## Motivation
I've already hit 2 instances where I'd like to be able to…