slint icon indicating copy to clipboard operation
slint copied to clipboard

Slint is a declarative GUI toolkit to build native user interfaces for Rust, C++, or JavaScript apps.

Results 804 slint issues
Sort by recently updated
recently updated
newest added

For context, see [this discussion](https://github.com/slint-ui/slint/discussions/6303#discussioncomment-10763304) If `PopupWindow` could provide an `enabled` property, which if false would prevent it from eating mouse inputs, it would widen the usecases for it Alternatively,...

enhancement
a:builtin elements

In my app, I need to perform an action in Slint code when the window is closed. (To be specific, it must run before my Rust line `slint::run_event_loop()?;` returns.) I'm...

enhancement
a:language-slint
priority:low
api

I have a `Slider` with a distorted scale, on which only certain values should be allowed as `Slider` handle stops (not equally spaced apart, but mathematically deterministic). I propose to...

enhancement
a:widgets

To reproduce, change the width of [this SlintPad demo](https://slintpad.com/?snippet=import+%7B+VerticalBox+%7D+from+%22std-widgets.slint%22%3B%0A%0Aexport+component+Demo+%7B%0A++++height%3A+200px%3B%0A%0A++++VerticalBox+%7B%0A++++++++alignment%3A+start%3B%0A%0A++++++++Text+%7B%0A++++++++++++text%3A+%22Lorem%2C+ipsum.+dolor%21+sit%3F+amet%3B+%28consetetur%29+%5Bsadipscing%5D+elitr%3A+%5C%22sed-diam%5C%22+%27nonumy%27%22%3B%0A++++++++++++wrap%3A+word-wrap%3B%0A++++++++%7D%0A++++%7D%0A%7D%0A&style=native). `Lorem,`, e.g., is wrapped to `Lorem\n,` In my app, this can lead to the period at the end of a sentence...

a:renderer-femtovg
upstream

For example, this can be seen with many of the buttons. Reproducer: ```slint component Btn { min-height: 100px; VerticalLayout { Text { text: "Hello"; } } } export component Demo...

bug
a:layouts

### Bug Description ***When inputting text into a text field created by slint, screen readers behave abnormally. I do not know what the issue itself is, but based on some...

need triaging

Add a `DragArea` and `DropArea` elements. It is currently gated as experimental. Use it in the live-preview for the drag&drop between the component library and the preview. CC https://github.com/slint-ui/slint/issues/1967

We should generate the documentation from the widgets and the builtin elements from the builtins.slint and std-widgets.slint It should be easy to take the parser and make a tool that...

a:documentation
a:tooling

… reporting wrong values when the text changes Bite the bullet and use a proxy property with a binding. Fixes #331