lqml/examples/advanced-qml-auto-reload/qml/ext/Page2.qml
2022-03-10 09:38:17 +01:00

16 lines
251 B
QML

import QtQuick 2.15
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>"
}
}
}