LoadingIndicator
LoadingIndicator` can be used as overlay to block interaction and to display there is an ongoing loading task.
Example
import { LoadingIndicator } from "@coop/lib.slint";
export component Example inherits Window {
in property <bool> loading;
width: 150px;
height: 150px;
if (root.loading) : LoadingIndicator {}
}