add new example 'advanced-qml-auto-reload' (single file reload); revisions

This commit is contained in:
pls.153 2022-03-09 17:28:37 +01:00
parent 5f3b251a69
commit 1473ec8271
28 changed files with 1144 additions and 2 deletions

View file

@ -0,0 +1,13 @@
import QtQuick 2.15
Rectangle {
radius: 50
color: Qt.lighter("blue", 1.7)
border.width: 10
border.color: "blue"
Text {
anchors.centerIn: parent
text: "<h2>page 3</h2>"
}
}