Replies: 1 comment 3 replies
-
Is this what you are looking for? import { Spinner } from "std-widgets.slint";
export component Demo {
VerticalLayout {
Spinner {
indeterminate: true;
}
}
} |
Beta Was this translation helpful? Give feedback.
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Slint has a
spinner
but it seems like I need to manage its progress.I can set a timer and drive the spinner but I wonder if there's a simpler way.
In HTML I can just define a spinner as css and it spins. Is there a way to do that with Slint spinner as well?
Beta Was this translation helpful? Give feedback.
All reactions