lqml/examples/Qt6/advanced-qml-auto-reload/qml/ext/Page1.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
226 B
QML

import QtQuick
Item {
Rectangle {
anchors.fill: parent
color: Qt.lighter("red", 1.5)
border.width: 10
border.color: "red"
Text {
anchors.centerIn: parent
text: "<h2>page 1</h2>"
}
}
}