qt6-bb10/qtdeclarative/tests/auto/quick/qquickloader/data/QTBUG_17114.qml

19 lines
365 B
QML

import QtQuick 2.0
Rectangle {
property real loaderWidth: loader.width
property real loaderHeight: loader.height
width: 200
height: 200
Loader {
id: loader
sourceComponent: Item {
property real iwidth: 32
property real iheight: 32
width: iwidth
height: iheight
}
}
}