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

Item {
    width: 200
    height: 200

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