mirror of
https://gitlab.com/eql/lqml.git
synced 2025-12-05 18:20:33 -08:00
16 lines
246 B
QML
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>"
|
|
}
|
|
}
|
|
}
|