aboutsummaryrefslogtreecommitdiffstats
path: root/tests/baseline/controls/data/popup/popup.qml
blob: 50d41b351d30c2f8b29ad8c2ae204cf9b89e0abf (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
        Text {
            text: "visible"
        }
    }
}