blob: b9606eb2ae47606b40693082f9579dd0b7b4cdcc [file] [log] [blame]
import QtQuick 2.13
import QtQuick.Window 2.13
import QtQuick.Controls 2.13
Window {
width: 400
height: 400
Popup {
objectName: "popup"
visible: true
width: 200
height: 200
anchors.centerIn: parent
closePolicy: Popup.CloseOnEscape
}
}