mirror of
https://gitlab.com/eql/lqml.git
synced 2025-12-06 10:31:34 -08:00
15 lines
231 B
QML
15 lines
231 B
QML
import QtQuick 2.15
|
|
|
|
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>"
|
|
}
|
|
}
|
|
}
|