lqml/examples/Qt6/advanced-qml-auto-reload/qml/.template.qml
pls.153 dc29ac9084 add Qt6 version of some examples (see below); revisions
'9999', 'advanced-qml-auto-reload', 'planets', 'sokoban'
2024-10-22 13:27:56 +02:00

15 lines
241 B
QML

import QtQuick
Loader {
objectName: "~A"
source: objectName
Component.onCompleted: if (width === 0) { anchors.fill = parent }
function reload() {
var src = source
source = ""
Engine.clearCache()
source = src
}
}