aboutsummaryrefslogtreecommitdiffstats
path: root/tests/baseline/controls/data/popup/modal.qml
blob: dfcab2e3f2fbc9f4dc0e520a5f320a35dc401c0a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
import QtQuick
import QtQuick.Controls

Item {
    width: 200
    height: 200

    Popup {
        anchors.centerIn: parent
        modal: true
        visible: true
        Label {
            text: "visible"
        }
    }
}