lqml/examples/Qt6/advanced-qml-auto-reload/qml/ext/Page2.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

16 lines
246 B
QML

import QtQuick
Item {
Rectangle {
anchors.fill: parent
radius: 100
color: Qt.lighter("green", 3.0)
border.width: 10
border.color: "green"
Text {
anchors.centerIn: parent
text: "<h2>page 2</h2>"
}
}
}