OverlayTouchArea

A TouchArea with a transparent black background. Properties and callback same as TouchArea.

Example

import { OverlayTouchArea } from "@coop/lib.slint";

export component Example inherits Window {
    width: 200px;
    height: 25px;

    OverlayTouchArea {
        clicked => {
            debug("Clicked on overlay touch area");
        }
    }
}