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