qt6-bb10/qtdeclarative/tests/auto/quick/qquickpixmapcache/data/asynchronousNoCache.qml

18 lines
306 B
QML

import QtQuick 2.12
Item {
visible: true
width: 640
height: 480
Image{
asynchronous: true
anchors.fill: parent
fillMode: Image.Stretch
source: "exists1.png"
cache: false
sourceSize.width: width/2
sourceSize.height: height/2
}
}